diff options
author | lloyd <[email protected]> | 2013-12-27 03:16:21 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-12-27 03:16:21 +0000 |
commit | 6c478ab34cffd35b75269ca77af0f4019209f79a (patch) | |
tree | 012b021a2768d18c409fb6e039fe771fa48081a9 /src/asn1/oid_lookup/oids.h | |
parent | 31646c04d8f34bee98fe0e2aafe1d708a73fb8d4 (diff) |
Avoid inline std::string constructors for OID constants
Diffstat (limited to 'src/asn1/oid_lookup/oids.h')
-rw-r--r-- | src/asn1/oid_lookup/oids.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/asn1/oid_lookup/oids.h b/src/asn1/oid_lookup/oids.h index 386ce09ec..27533202f 100644 --- a/src/asn1/oid_lookup/oids.h +++ b/src/asn1/oid_lookup/oids.h @@ -24,6 +24,8 @@ BOTAN_DLL void add_oid(const OID& oid, const std::string& name); BOTAN_DLL void add_oid2str(const OID& oid, const std::string& name); BOTAN_DLL void add_str2oid(const OID& oid, const std::string& name); +BOTAN_DLL void add_oidstr(const char* oidstr, const char* name); + /** * See if an OID exists in the internal table. * @param oid the oid to check for |