diff options
Diffstat (limited to 'src/lib/asn1/oids.h')
-rw-r--r-- | src/lib/asn1/oids.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/lib/asn1/oids.h b/src/lib/asn1/oids.h new file mode 100644 index 000000000..16b87dfc3 --- /dev/null +++ b/src/lib/asn1/oids.h @@ -0,0 +1,46 @@ +/* +* OID Registry +* (C) 1999-2007 Jack Lloyd +* +* Botan is released under the Simplified BSD License (see license.txt) +*/ + +#ifndef BOTAN_OIDS_H__ +#define BOTAN_OIDS_H__ + +#include <botan/asn1_oid.h> + +namespace Botan { + +namespace OIDS { + +/** +* Resolve an OID +* @param oid the OID to look up +* @return name associated with this OID +*/ +BOTAN_DLL std::string lookup(const OID& oid); + +/** +* Find the OID to a name. The lookup will be performed in the +* general OID section of the configuration. +* @param name the name to resolve +* @return OID associated with the specified name +*/ +BOTAN_DLL OID lookup(const std::string& name); + +/** +* See if an OID exists in the internal table. +* @param oid the oid to check for +* @return true if the oid is registered +*/ +inline bool have_oid(const std::string& oid) + { + return (lookup(oid).empty() == false); + } + +} + +} + +#endif |