libcryptosec
ObjectIdentifierFactory.h
Go to the documentation of this file.
1 #ifndef OBJECTIDENTIFIERFACTORY_H_
2 #define OBJECTIDENTIFIERFACTORY_H_
3 
4 #include <openssl/objects.h>
5 
6 #include "ObjectIdentifier.h"
7 
9 
11 {
12 public:
13  static ObjectIdentifier getObjectIdentifier(std::string oid)
14  throw (CertificationException);
16  throw (CertificationException);
17  static ObjectIdentifier createObjectIdentifier(std::string oid, std::string name)
18  throw (CertificationException);
19 };
20 
21 #endif /*OBJECTIDENTIFIERFACTORY_H_*/
static ObjectIdentifier getObjectIdentifier(std::string oid)
Definition: ObjectIdentifierFactory.cpp:3
Definition: CertificationException.h:6
Definition: ObjectIdentifier.h:11
Definition: ObjectIdentifierFactory.h:10
static ObjectIdentifier createObjectIdentifier(std::string oid, std::string name)
Definition: ObjectIdentifierFactory.cpp:27