Home | History | Annotate | Download | only in lib

Lines Matching refs:rsa

125 	RSAPublicKey *rsa;
138 rsa = RSAPublicKeyFromBuf(GetPublicKeyDataC(key), key->key_size);
139 if (!rsa)
142 rsa->algorithm = (unsigned int)key->algorithm;
143 return rsa;
255 RSAPublicKey *rsa;
265 rsa = PublicKeyToRSA(key);
266 if (!rsa) {
274 RSAPublicKeyFree(rsa);
279 rv = VerifyData((const uint8_t *)block, size, sig, rsa);
280 RSAPublicKeyFree(rsa);