Home
last modified time | relevance | path

Searched refs:asn1_int (Results 1 – 2 of 2) sorted by relevance

/hardware/interfaces/keymaster/3.0/vts/functional/
Dattestation_record.cpp153 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::ENUM, tag> ttag, in copyAuthTag() argument
156 if (!asn1_int) return; in copyAuthTag()
157 auth_list->push_back(ttag, static_cast<ValueT>(ASN1_INTEGER_get(asn1_int))); in copyAuthTag()
161 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::UINT, tag> ttag, in copyAuthTag() argument
163 if (!asn1_int) return; in copyAuthTag()
164 auth_list->push_back(ttag, ASN1_INTEGER_get(asn1_int)); in copyAuthTag()
192 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::ULONG, tag> ttag, in copyAuthTag() argument
194 if (!asn1_int) return; in copyAuthTag()
195 BIGNUM_Ptr num(ASN1_INTEGER_to_BN(asn1_int, nullptr)); in copyAuthTag()
200 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::DATE, tag> ttag, in copyAuthTag() argument
[all …]
/hardware/interfaces/keymaster/4.0/support/
Dattestation_record.cpp168 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::ENUM, tag> ttag, in copyAuthTag() argument
171 if (!asn1_int) return; in copyAuthTag()
172 auth_list->push_back(ttag, static_cast<ValueT>(ASN1_INTEGER_get(asn1_int))); in copyAuthTag()
176 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::UINT, tag> ttag, in copyAuthTag() argument
178 if (!asn1_int) return; in copyAuthTag()
179 auth_list->push_back(ttag, ASN1_INTEGER_get(asn1_int)); in copyAuthTag()
207 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::ULONG, tag> ttag, in copyAuthTag() argument
209 if (!asn1_int) return; in copyAuthTag()
210 BIGNUM_Ptr num(ASN1_INTEGER_to_BN(asn1_int, nullptr)); in copyAuthTag()
215 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::DATE, tag> ttag, in copyAuthTag() argument
[all …]