Home
last modified time | relevance | path

Searched refs:sha256 (Results 1 – 16 of 16) sorted by relevance

/hardware/interfaces/identity/aidl/default/libeic/
DEicCbor.c25 eicOpsSha256Init(&cbor->digester.sha256); in eicCborInit()
38 void eicCborEnableSecondaryDigesterSha256(EicCbor* cbor, EicSha256Ctx* sha256) { in eicCborEnableSecondaryDigesterSha256() argument
39 cbor->secondaryDigesterSha256 = sha256; in eicCborEnableSecondaryDigesterSha256()
45 eicOpsSha256Final(&cbor->digester.sha256, digest); in eicCborFinal()
56 eicOpsSha256Update(&cbor->digester.sha256, data, size); in eicCborAppend()
DEicCbor.h52 EicSha256Ctx sha256; member
82 void eicCborEnableSecondaryDigesterSha256(EicCbor* cbor, EicSha256Ctx* sha256);
DEicPresentation.c229 EicSha256Ctx sha256; in eicPresentationValidateRequestMessage() local
231 eicOpsSha256Init(&sha256); in eicPresentationValidateRequestMessage()
232 eicOpsSha256Update(&sha256, sessionTranscript, sessionTranscriptSize); in eicPresentationValidateRequestMessage()
233 eicOpsSha256Final(&sha256, sessionTranscriptSha256); in eicPresentationValidateRequestMessage()
638 EicSha256Ctx sha256; in eicPresentationPrepareDeviceAuthentication() local
640 eicOpsSha256Init(&sha256); in eicPresentationPrepareDeviceAuthentication()
641 eicOpsSha256Update(&sha256, sessionTranscript, sessionTranscriptSize); in eicPresentationPrepareDeviceAuthentication()
642 eicOpsSha256Final(&sha256, sessionTranscriptSha256); in eicPresentationPrepareDeviceAuthentication()
/hardware/interfaces/security/keymint/aidl/default/ta/
Dlib.rs26 hmac::BoringHmac, rng::BoringRng, rsa::BoringRsa, sha256::BoringSha256,
59 sha256: Box::new(BoringSha256), in boringssl_crypto_impls()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/
DrunDocker17 image=`grep -m 1 khronosgroup/docker-images@sha256: $repopath/.gitlab-ci.yml | \
/hardware/interfaces/identity/aidl/vts/
DAuthenticationKeyTests.cpp185 EXPECT_EQ(popSha256Item->value(), support::sha256(proofOfProvisioning.value())); in TEST_P()
DTestCredentialTests.cpp194 ASSERT_EQ(popSha256, support::sha256(proofOfProvisioning.value())); in TEST_P()
DEndToEndTests.cpp312 ASSERT_EQ(exSha256Pop, support::sha256(proofOfProvisioning.value())); in TEST_P()
/hardware/interfaces/broadcastradio/1.1/
DIBroadcastRadio.hal38 * The identifier may be any arbitrary number - sequential, sha256 prefix,
/hardware/interfaces/identity/support/tests/
DIdentityCredentialSupportTest.cpp70 support::checkEcDsaSignature(support::sha256(data), signature.value(), pubKey.value())); in TEST()
76 support::checkEcDsaSignature(support::sha256(data), modifiedSignature, pubKey.value())); in TEST()
79 vector<uint8_t> modifiedDigest = support::sha256(data); in TEST()
/hardware/interfaces/identity/support/include/android/hardware/identity/support/
DIdentityCredentialSupport.h100 vector<uint8_t> sha256(const vector<uint8_t>& data);
/hardware/interfaces/broadcastradio/2.0/
DIBroadcastRadio.hal80 * The identifier may be any arbitrary number (i.e. sha256 prefix) selected
/hardware/interfaces/identity/aidl/default/common/
DIdentityCredential.cpp139 vector<uint8_t> podDigest = support::sha256(proofOfDeletionCbor); in deleteCredentialCommon()
179 vector<uint8_t> podDigest = support::sha256(proofOfOwnershipCbor); in proveOwnership()
/hardware/interfaces/identity/support/src/
DIdentityCredentialSupport.cpp762 vector<uint8_t> sha256(const vector<uint8_t>& data) { in sha256() function
801 return signEcDsaDigest(key, sha256(data)); in signEcDsa()
1954 if (!checkEcDsaSignature(support::sha256(toBeSigned), derSignature, publicKey)) { in coseCheckEcDsaSignature()
2229 vector<uint8_t> salt = support::sha256(sessionTranscriptBytes); in calcEMacKey()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/
DBUILD.adoc411 $ git grep -h sha256: .gitlab-ci.yml
415 …image: khronosgroup/docker-images@sha256:42123ba13792c4e809d037b69152c2230ad97fbf43b677338075ab9c9…
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/cereal/
Dmarshaling.py879 hashCode = hashlib.sha256(name.encode()).hexdigest()[:8]