Home | History | Annotate | Download | only in cryptolib

Lines Matching refs:verification_key

89   RSAPublicKey* verification_key = NULL;
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;
141 verification_key = RSAPublicKeyFromBuf(key_blob, key_size);
143 verification_key = (RSAPublicKey*) key; /* Supress const warning. */
148 if (!verification_key)
151 success = RSAVerify(verification_key, sig, (uint32_t)sig_size,
155 RSAPublicKeyFree(verification_key); /* Only free if we allocated it. */