Botan
1.11.15
|
#include <x509_ext.h>
Public Member Functions | |
Extended_Key_Usage * | copy () const |
Extended_Key_Usage () | |
Extended_Key_Usage (const std::vector< OID > &o) | |
std::vector< OID > | get_oids () const |
OID | oid_of () const |
Friends | |
class | Extensions |
Extended Key Usage Extension
Definition at line 230 of file x509_ext.h.
Definition at line 235 of file x509_ext.h.
{}
Botan::Cert_Extension::Extended_Key_Usage::Extended_Key_Usage | ( | const std::vector< OID > & | o | ) | [inline] |
Definition at line 236 of file x509_ext.h.
: oids(o) {}
Extended_Key_Usage* Botan::Cert_Extension::Extended_Key_Usage::copy | ( | ) | const [inline, virtual] |
Make a copy of this extension
Implements Botan::Certificate_Extension.
Definition at line 233 of file x509_ext.h.
{ return new Extended_Key_Usage(oids); }
std::vector<OID> Botan::Cert_Extension::Extended_Key_Usage::get_oids | ( | ) | const [inline] |
Definition at line 238 of file x509_ext.h.
{ return oids; }
OID Botan::Certificate_Extension::oid_of | ( | ) | const [inherited] |
Definition at line 74 of file x509_ext.cpp.
References Botan::OIDS::lookup(), and Botan::Certificate_Extension::oid_name().
Referenced by Botan::Extensions::encode_into().
{ return OIDS::lookup(oid_name()); }
friend class Extensions [friend, inherited] |
Definition at line 51 of file x509_ext.h.