Botan 3.3.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
10#include <botan/internal/oid_map.h>
11
12namespace Botan {
13
14void OIDS::add_oid2str(const OID& oid, std::string_view name) {
16}
17
18void OIDS::add_str2oid(const OID& oid, std::string_view name) {
20}
21
22} // namespace Botan
static OID_Map & global_registry()
Definition oid_map.cpp:16
void add_str2oid(const OID &oid, std::string_view str)
Definition oid_map.cpp:41
void add_oid2str(const OID &oid, std::string_view str)
Definition oid_map.cpp:48
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:14