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

  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLRSAKeyFactory.java 94 RSAPublicKey rsaKey = (RSAPublicKey) key;
96 T result = (T) new RSAPublicKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent());
103 RSAPublicKey rsaKey =
106 T result = (T) new RSAPublicKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent());
110 RSAPrivateCrtKey rsaKey = (RSAPrivateCrtKey) key;
112 T result = (T) new RSAPrivateCrtKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent(),
113 rsaKey.getPrivateExponent(), rsaKey.getPrimeP(), rsaKey.getPrimeQ()
    [all...]
  /external/tpm2/
RSA_Decrypt.c 32 OBJECT *rsaKey;
38 rsaKey = ObjectGet(in->keyHandle);
41 if(rsaKey->publicArea.type != TPM_ALG_RSA)
45 if( rsaKey->publicArea.objectAttributes.restricted == SET
46 || rsaKey->publicArea.objectAttributes.decrypt == CLEAR)
75 result = CryptDecryptRSA(&out->message.t.size, out->message.t.buffer, rsaKey,
RSA_Encrypt.c 30 OBJECT *rsaKey;
36 rsaKey = ObjectGet(in->keyHandle);
39 if(rsaKey->publicArea.type != TPM_ALG_RSA)
43 if(rsaKey->publicArea.objectAttributes.decrypt != SET)
66 result = CryptEncryptRSA(&out->outData.t.size, out->outData.t.buffer, rsaKey,
CryptUtil.c 784 OBJECT *rsaKey,
788 key->exponent = rsaKey->publicArea.parameters.rsaDetail.exponent;
791 key->publicKey = &rsaKey->publicArea.unique.rsa.b;
792 if(rsaKey->attributes.publicOnly || rsaKey->privateExponent.t.size == 0)
795 key->privateKey = &(rsaKey->privateExponent.b);
    [all...]
CryptUtil_fp.h 69 OBJECT *rsaKey, // IN: internal RSA key
106 OBJECT *rsaKey, // IN: internal RSA key
  /external/libchrome/crypto/
nss_key_util_unittest.cc 43 EXPECT_EQ(rsaKey, SECKEY_GetPublicKeyType(public_key.get()));
44 EXPECT_EQ(rsaKey, SECKEY_GetPrivateKeyType(private_key.get()));
rsa_private_key_nss.cc 86 if (!key || SECKEY_GetPrivateKeyType(key.get()) != rsaKey)
94 if (SECKEY_GetPrivateKeyType(key) != rsaKey)
nss_key_util.cc 51 if (SECKEY_GetPublicKeyType(result.get()) != rsaKey)
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyFactorySpi.java 98 AndroidKeyStoreRSAPublicKey rsaKey = (AndroidKeyStoreRSAPublicKey) key;
101 (T) new RSAPublicKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent());
  /external/boringssl/src/ssl/test/runner/
sign.go 107 rsaKey, ok := key.(*rsa.PrivateKey)
112 return rsa.SignPKCS1v15(config.rand(), rsaKey, r.hash, r.computeHash(msg))
116 rsaKey, ok := key.(*rsa.PublicKey)
121 return rsa.VerifyPKCS1v15(rsaKey, r.hash, r.computeHash(msg), sig)
224 rsaKey, ok := key.(*rsa.PrivateKey)
231 return rsa.SignPSS(config.rand(), rsaKey, r.hash, h.Sum(nil), &pssOptions)
235 rsaKey, ok := key.(*rsa.PublicKey)
242 return rsa.VerifyPSS(rsaKey, r.hash, h.Sum(nil), sig, &pssOptions)
handshake_client.go     [all...]
  /device/google/contexthub/firmware/os/core/
bl.c 327 const uint32_t *rsaKey, *osSigHash, *osSigPubkey, *ourHash, *rsaResult, *expectedHash = NULL;
364 for (i = 0, rsaKey = blExtApiGetRsaKeyInfo(&numRsaKeys); i < numRsaKeys; i++, rsaKey += RSA_WORDS) {
365 if (memcmp(rsaKey, osSigPubkey, RSA_BYTES) == 0)
  /prebuilts/tools/common/m2/repository/org/bitbucket/b_c/jose4j/0.5.0/
jose4j-0.5.0.jar 

Completed in 367 milliseconds