|
Botan
1.11.15
|
#include <asn1_obj.h>
Public Member Functions | |
| BER_Bad_Tag (const std::string &msg, ASN1_Tag tag) | |
| BER_Bad_Tag (const std::string &msg, ASN1_Tag tag1, ASN1_Tag tag2) | |
Exception For Incorrect BER Taggings
Definition at line 116 of file asn1_obj.h.
| Botan::BER_Bad_Tag::BER_Bad_Tag | ( | const std::string & | msg, |
| ASN1_Tag | tag | ||
| ) |
Definition at line 22 of file asn1_obj.cpp.
:
BER_Decoding_Error(str + ": " + std::to_string(tag)) {}
| Botan::BER_Bad_Tag::BER_Bad_Tag | ( | const std::string & | msg, |
| ASN1_Tag | tag1, | ||
| ASN1_Tag | tag2 | ||
| ) |
Definition at line 25 of file asn1_obj.cpp.
: BER_Decoding_Error(str + ": " + std::to_string(tag1) + "/" + std::to_string(tag2)) {}
1.7.6.1