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

  /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,
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyFactorySpi.java 98 AndroidKeyStoreRSAPublicKey rsaKey = (AndroidKeyStoreRSAPublicKey) key;
101 (T) new RSAPublicKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent());
  /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...]
  /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/sdk/tools/lib/
signapk.jar 
  /prebuilts/tools/common/m2/repository/org/bitbucket/b_c/jose4j/0.5.0/
jose4j-0.5.0.jar 

Completed in 907 milliseconds