Home
last modified time | relevance | path

Searched refs:privateKey (Results 1 – 13 of 13) sorted by relevance

/cts/tests/tests/keystore/src/android/keystore/cts/
DRSACipherTest.java50 PrivateKey privateKey = key.getKeystoreBackedKeyPair().getPrivate(); in testNoPaddingEncryptionAndDecryptionSucceedsWithInputShorterThanModulus() local
63 cipher.init(Cipher.DECRYPT_MODE, privateKey); in testNoPaddingEncryptionAndDecryptionSucceedsWithInputShorterThanModulus()
83 PrivateKey privateKey = key.getKeystoreBackedKeyPair().getPrivate(); in testNoPaddingEncryptionSucceedsWithPlaintextOneSmallerThanModulus() local
92 cipher.init(Cipher.DECRYPT_MODE, privateKey); in testNoPaddingEncryptionSucceedsWithPlaintextOneSmallerThanModulus()
200 PrivateKey privateKey = key.getKeystoreBackedKeyPair().getPrivate(); in testNoPaddingDecryptionFailsWithCiphertextOneByteLongerThanModulus() local
201 BigInteger modulus = ((RSAKey) privateKey).getModulus(); in testNoPaddingDecryptionFailsWithCiphertextOneByteLongerThanModulus()
209 cipher.init(Cipher.DECRYPT_MODE, privateKey); in testNoPaddingDecryptionFailsWithCiphertextOneByteLongerThanModulus()
232 PrivateKey privateKey = key.getKeystoreBackedKeyPair().getPrivate(); in testNoPaddingWithZeroMessage() local
242 cipher.init(Cipher.DECRYPT_MODE, privateKey); in testNoPaddingWithZeroMessage()
DRSASignatureTest.java61 PrivateKey privateKey = keyPair.getKeystoreBackedKeyPair().getPrivate(); in testMaxMessageSizeWhenNoDigestUsed() local
73 signature.initSign(privateKey); in testMaxMessageSizeWhenNoDigestUsed()
83 signature.initSign(privateKey); in testMaxMessageSizeWhenNoDigestUsed()
DSignatureTest.java535 PrivateKey privateKey = key.getOriginalKeyPair().getPrivate(); in testSignatureGeneratedByHighestPriorityProviderVerifiesByAndroidKeyStore() local
541 signature.initSign(privateKey); in testSignatureGeneratedByHighestPriorityProviderVerifiesByAndroidKeyStore()
582 PrivateKey privateKey = keyPair.getPrivate(); in testEntropyConsumption() local
587 signature.initSign(privateKey, rng); in testEntropyConsumption()
603 (TestUtils.getKeySizeBits(privateKey) + 7) / 8; in testEntropyConsumption()
1104 PrivateKey privateKey = TestUtils.importIntoAndroidKeyStore( in assertInitSignSucceeds() local
1109 signature.initSign(privateKey); in assertInitSignSucceeds()
1137 PrivateKey privateKey = TestUtils.importIntoAndroidKeyStore( in assertInitSignThrowsInvalidKeyException() local
1143 signature.initSign(privateKey); in assertInitSignThrowsInvalidKeyException()
1249 PrivateKey privateKey, in generateSignatureFedUsingFixedSizeChunks() argument
[all …]
DTestUtils.java109 static void assertKeyPairSelfConsistent(PublicKey publicKey, PrivateKey privateKey) { in assertKeyPairSelfConsistent() argument
111 assertNotNull(privateKey); in assertKeyPairSelfConsistent()
112 assertEquals(publicKey.getAlgorithm(), privateKey.getAlgorithm()); in assertKeyPairSelfConsistent()
119 + privateKey.getClass().getName(), in assertKeyPairSelfConsistent()
120 privateKey instanceof ECKey); in assertKeyPairSelfConsistent()
123 ((ECKey) publicKey).getParams(), ((ECKey) privateKey).getParams()); in assertKeyPairSelfConsistent()
129 + privateKey.getClass().getName(), in assertKeyPairSelfConsistent()
130 privateKey instanceof RSAKey); in assertKeyPairSelfConsistent()
132 ((RSAKey) publicKey).getModulus(), ((RSAKey) privateKey).getModulus()); in assertKeyPairSelfConsistent()
425 PrivateKey privateKey, in importIntoAndroidKeyStore() argument
[all …]
DKeyStoreTest.java310 … public static void setPrivateKeyNoPassword(KeyStore ks, String alias, PrivateKeyEntry privateKey) in setPrivateKeyNoPassword() argument
312 ks.setKeyEntry(alias, privateKey.getPrivateKey(), null, privateKey.getCertificateChain()); in setPrivateKeyNoPassword()
322 PrivateKeyEntry privateKey) in setPrivateKey() argument
325 privateKey.getPrivateKey(), in setPrivateKey()
327 privateKey.getCertificateChain()); in setPrivateKey()
338 PrivateKeyEntry privateKey) in setPrivateKeyBytes() argument
341 privateKey.getPrivateKey().getEncoded(), in setPrivateKeyBytes()
342 privateKey.getCertificateChain()); in setPrivateKeyBytes()
399 PrivateKeyEntry privateKey = (PrivateKeyEntry) actual; in assertPrivateKey() local
400 assertEquals(getPrivateKey().getPrivateKey(), privateKey.getPrivateKey()); in assertPrivateKey()
[all …]
DKeyPairGeneratorTest.java1706 PrivateKey privateKey, in assertUsableForTLSPeerAuthentication() argument
1722 TestKeyManager.wrap(new MyKeyManager(privateKey, x509CertificateChain)) in assertUsableForTLSPeerAuthentication()
1727 if ("EC".equalsIgnoreCase(privateKey.getAlgorithm())) { in assertUsableForTLSPeerAuthentication()
1732 } else if ("RSA".equalsIgnoreCase(privateKey.getAlgorithm())) { in assertUsableForTLSPeerAuthentication()
1759 fail("Unsupported key algorithm: " + privateKey.getAlgorithm()); in assertUsableForTLSPeerAuthentication()
DAndroidKeyStoreTest.java1914 PrivateKey privateKey = (PrivateKey) ks.getKey(alias, null); in testKeyStore_Encrypting_RSA_NONE_NOPADDING() local
1915 assertNotNull(privateKey); in testKeyStore_Encrypting_RSA_NONE_NOPADDING()
1918 String cipher = privateKey.getAlgorithm() + "/NONE/NOPADDING"; in testKeyStore_Encrypting_RSA_NONE_NOPADDING()
1921 encrypt.init(Cipher.ENCRYPT_MODE, privateKey); in testKeyStore_Encrypting_RSA_NONE_NOPADDING()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DFakeKeys.java37 public static final byte[] privateKey = { field in FakeKeys.FAKE_RSA_1
292 public static final byte[] privateKey = { field in FakeKeys.FAKE_DSA_1
/cts/common/device-side/util/src/com/android/compatibility/common/util/
DFakeKeys.java37 public static final byte[] privateKey = { field in FakeKeys.FAKE_RSA_1
292 public static final byte[] privateKey = { field in FakeKeys.FAKE_DSA_1
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
DKeyManagementTest.java114 final PrivateKey privKey = getPrivateKey(FAKE_RSA_1.privateKey, "RSA"); in testCanInstallAndRemoveValidRsaKeypair()
138 final PrivateKey privKey = getPrivateKey(FAKE_RSA_1.privateKey, "RSA"); in testCanInstallWithAutomaticAccess()
207 final PrivateKey privKey = getPrivateKey(FAKE_RSA_1.privateKey, "RSA"); in testGrantsDoNotPersistBetweenInstallations()
238 final PrivateKey privKey = getPrivateKey(FAKE_RSA_1.privateKey, "RSA"); in testNullKeyParamsFailPredictably()
254 final PrivateKey privKey = getPrivateKey(FAKE_RSA_1.privateKey, "RSA"); in testNullAdminComponentIsDenied()
265 final PrivateKey privKey = getPrivateKey(FAKE_RSA_1.privateKey, "RSA"); in testNotUserSelectableAliasCanBeChosenViaPolicy()
284 byte[] signDataWithKey(String algoIdentifier, PrivateKey privateKey) throws Exception { in signDataWithKey() argument
287 sign.initSign(privateKey); in signDataWithKey()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
DKeyChainTestActivity.java210 PrivateKey privateKey = KeyChain.getPrivateKey(KeyChainTestActivity.this, alias); in alias() local
211 if (privateKey == null) { in alias()
218 sign.initSign(privateKey); in alias()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
DKeyChainTest.java486 PrivateKey privateKey = KeyChain.getPrivateKey(KeyChainTest.this, alias); in getPrivateKey() local
487 Log.d(TAG, "privateKey = " + privateKey); in getPrivateKey()
488 return privateKey; in getPrivateKey()
/cts/hostsidetests/devicepolicy/app/CertInstaller/src/com/android/cts/certinstaller/
DCertSelectionDelegateTest.java102 final PrivateKey privKey = getPrivateKey(FAKE_RSA_1.privateKey, "RSA"); in testCanSelectKeychainKeypairs()