Botan 1.10.17
Botan::ASN1_Car Class Reference

#include <eac_asn_obj.h>

Inheritance diagram for Botan::ASN1_Car:
Botan::ASN1_EAC_String Botan::ASN1_Object

Public Member Functions

 ASN1_Car (std::string const &str="")
void decode_from (class BER_Decoder &)
void encode_into (class DER_Encoder &) const
std::string iso_8859 () const
ASN1_Tag tagging () const
std::string value () const

Protected Member Functions

bool sanity_check () const

Detailed Description

This class represents CARs of CVCs. (String tagged with 2)

Definition at line 201 of file eac_asn_obj.h.

Constructor & Destructor Documentation

◆ ASN1_Car()

Botan::ASN1_Car::ASN1_Car ( std::string const & str = "")

Create a CAR with the specified content.

Parameters
strthe CAR value

Definition at line 119 of file asn1_eac_str.cpp.

120 : ASN1_EAC_String(str, ASN1_Tag(2))
121 {}
ASN1_EAC_String(const std::string &str, ASN1_Tag the_tag)
ASN1_Tag
Definition asn1_int.h:19

References Botan::ASN1_EAC_String::ASN1_EAC_String().

Referenced by Botan::DE_EAC::sign_request().

Member Function Documentation

◆ decode_from()

void Botan::ASN1_EAC_String::decode_from ( class BER_Decoder & from)
virtualinherited

Decode whatever this object is from from

Parameters
fromthe BER_Decoder that will be read from

Implements Botan::ASN1_Object.

Definition at line 66 of file asn1_eac_str.cpp.

67 {
68 BER_Object obj = source.get_next_object();
69
70 if(obj.type_tag != this->tag)
71 {
72 std::stringstream ss;
73
74 ss << "ASN1_EAC_String tag mismatch, tag was "
75 << std::hex << obj.type_tag
76 << " expected "
77 << std::hex << this->tag;
78
79 throw Decoding_Error(ss.str());
80 }
81
82 Character_Set charset_is;
83 charset_is = LATIN1_CHARSET;
84
85 try
86 {
87 *this = ASN1_EAC_String(
89 obj.type_tag);
90 }
91 catch(Invalid_Argument inv_arg)
92 {
93 throw Decoding_Error(std::string("ASN1_EAC_String decoding failed: ") +
94 inv_arg.what());
95 }
96 }
std::string to_string(const BER_Object &obj)
Definition asn1_int.cpp:46
std::string transcode(const std::string &str, Character_Set to, Character_Set from)
Definition charset.cpp:103
Character_Set
Definition charset.h:19
@ LOCAL_CHARSET
Definition charset.h:20
@ LATIN1_CHARSET
Definition charset.h:23
std::invalid_argument Invalid_Argument
Definition exceptn.h:20
Decoding_Error(const std::string &name)
Definition exceptn.h:140

References ASN1_EAC_String(), Botan::Decoding_Error::Decoding_Error(), Botan::BER_Decoder::get_next_object(), Botan::LATIN1_CHARSET, Botan::LOCAL_CHARSET, Botan::ASN1::to_string(), Botan::Charset::transcode(), and Botan::BER_Object::type_tag.

◆ encode_into()

void Botan::ASN1_EAC_String::encode_into ( class DER_Encoder & to) const
virtualinherited

Encode whatever this object is into to

Parameters
tothe DER_Encoder that will be written to

Implements Botan::ASN1_Object.

Definition at line 57 of file asn1_eac_str.cpp.

58 {
59 std::string value = iso_8859();
60 encoder.add_object(tagging(), APPLICATION, value);
61 }
ASN1_Tag tagging() const
std::string iso_8859() const
std::string value() const
@ APPLICATION
Definition asn1_int.h:21

References Botan::DER_Encoder::add_object(), Botan::APPLICATION, iso_8859(), tagging(), and value().

◆ iso_8859()

std::string Botan::ASN1_EAC_String::iso_8859 ( ) const
inherited

Get this objects string value.

Returns
string value in iso8859 encoding

Definition at line 33 of file asn1_eac_str.cpp.

34 {
35 return iso_8859_str;
36 }

Referenced by encode_into(), Botan::operator==(), and Botan::DE_EAC::sign_request().

◆ sanity_check()

bool Botan::ASN1_EAC_String::sanity_check ( ) const
protectedinherited

Definition at line 100 of file asn1_eac_str.cpp.

101 {
102 const byte* rep = reinterpret_cast<const byte*>(iso_8859_str.data());
103 const size_t rep_len = iso_8859_str.size();
104
105 for(size_t i = 0; i != rep_len; ++i)
106 {
107 if((rep[i] < 0x20) || ((rep[i] >= 0x7F) && (rep[i] < 0xA0)))
108 return false;
109 }
110
111 return true;
112 }

Referenced by ASN1_EAC_String().

◆ tagging()

ASN1_Tag Botan::ASN1_EAC_String::tagging ( ) const
inherited

Definition at line 49 of file asn1_eac_str.cpp.

50 {
51 return tag;
52 }

Referenced by encode_into().

◆ value()

std::string Botan::ASN1_EAC_String::value ( ) const
inherited

Get this objects string value.

Returns
string value

Definition at line 41 of file asn1_eac_str.cpp.

42 {
43 return Charset::transcode(iso_8859_str, LATIN1_CHARSET, LOCAL_CHARSET);
44 }

References Botan::LATIN1_CHARSET, Botan::LOCAL_CHARSET, and Botan::Charset::transcode().

Referenced by Botan::CVC_EAC::create_self_signed_cert(), encode_into(), and Botan::DE_EAC::sign_request().


The documentation for this class was generated from the following files: