Searched refs:asn1_int (Results 1 – 2 of 2) sorted by relevance
/hardware/interfaces/keymaster/4.0/support/ |
D | attestation_record.cpp | 151 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::ENUM, tag> ttag, in copyAuthTag() argument 154 if (!asn1_int) return; in copyAuthTag() 155 auth_list->push_back(ttag, static_cast<ValueT>(ASN1_INTEGER_get(asn1_int))); in copyAuthTag() 159 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::UINT, tag> ttag, in copyAuthTag() argument 161 if (!asn1_int) return; in copyAuthTag() 162 auth_list->push_back(ttag, ASN1_INTEGER_get(asn1_int)); in copyAuthTag() 190 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::ULONG, tag> ttag, in copyAuthTag() argument 192 if (!asn1_int) return; in copyAuthTag() 193 BIGNUM_Ptr num(ASN1_INTEGER_to_BN(asn1_int, nullptr)); in copyAuthTag() 198 void copyAuthTag(const ASN1_INTEGER* asn1_int, TypedTag<TagType::DATE, tag> ttag, in copyAuthTag() argument [all …]
|
/hardware/interfaces/keymaster/3.0/vts/functional/ |
D | attestation_record.cpp | 153 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 …]
|