Botan 3.0.0
Crypto and TLS for C&
oids.cpp
Go to the documentation of this file.
1/*
2* OID Registry
3* (C) 1999-2008,2013 Jack Lloyd
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#include <botan/oids.h>
9#include <botan/internal/oid_map.h>
10
11namespace Botan {
12
13void OIDS::add_oid2str(const OID& oid, std::string_view name)
14 {
16 }
17
18void OIDS::add_str2oid(const OID& oid, std::string_view name)
19 {
21 }
22
23}
static OID_Map & global_registry()
Definition: oid_map.cpp:17
void add_str2oid(const OID &oid, std::string_view str)
Definition: oid_map.cpp:48
void add_oid2str(const OID &oid, std::string_view str)
Definition: oid_map.cpp:55
std::string name
BOTAN_UNSTABLE_API void add_str2oid(const OID &oid, std::string_view name)
Definition: oids.cpp:18
BOTAN_UNSTABLE_API void add_oid2str(const OID &oid, std::string_view name)
Definition: oids.cpp:13
Definition: alg_id.cpp:12