HomeSort by relevance Sort by last modified time
    Searched refs:verification_key (Results 1 - 2 of 2) sorted by null

  /external/vboot_reference/firmware/lib/cryptolib/
rsa_utility.c 89 RSAPublicKey* verification_key = NULL; local
102 verification_key = RSAPublicKeyFromBuf(key_blob, key_size);
104 verification_key = (RSAPublicKey*) key; /* Supress const warning. */
109 if (!verification_key)
113 success = RSAVerify(verification_key, sig, (uint32_t)sig_size,
118 RSAPublicKeyFree(verification_key); /* Only free if we allocated it. */
129 RSAPublicKey* verification_key = NULL; local
141 verification_key = RSAPublicKeyFromBuf(key_blob, key_size);
143 verification_key = (RSAPublicKey*) key; /* Supress const warning. */
148 if (!verification_key)
    [all...]
  /external/grpc-grpc/src/core/lib/security/credentials/jwt/
jwt_verifier.cc 636 EVP_PKEY* verification_key = nullptr; local
644 verification_key =
646 if (verification_key == nullptr) {
653 if (!verify_jwt_signature(verification_key, ctx->header->alg, ctx->signature,
668 EVP_PKEY_free(verification_key);

Completed in 1852 milliseconds