The unified diff between revisions [a5720087..] and [749fac9e..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'include/pkcs10.h'
#
#
# patch "include/pkcs10.h"
# from [2963efb4b97a36cdcd1bb51941ab613f9058ceaa]
# to [398469ee9df0cba36e4fa7c63c856dde07922557]
#
============================================================
--- include/pkcs10.h 2963efb4b97a36cdcd1bb51941ab613f9058ceaa
+++ include/pkcs10.h 398469ee9df0cba36e4fa7c63c856dde07922557
@@ -7,6 +7,7 @@
#define BOTAN_PKCS10_H__
#include <botan/x509_obj.h>
+#include <botan/x509_ext.h>
#include <botan/pkcs8.h>
#include <botan/datastor.h>
#include <vector>
@@ -23,7 +24,8 @@ class PKCS10_Request : public X509_Objec
MemoryVector<byte> raw_public_key() const;
X509_DN subject_dn() const;
- AlternativeName subject_alt_name() const;
+
+ Cert_Extension::Subject_Alternative_Name subject_alt_name() const;
Key_Constraints constraints() const;
std::vector<OID> ex_constraints() const;
@@ -38,6 +40,7 @@ class PKCS10_Request : public X509_Objec
void force_decode();
void handle_attribute(const Attribute&);
+ Extensions extensions;
Data_Store info;
};