Home
last modified time | relevance | path

Searched refs:keyAlgorithm (Results 1 – 7 of 7) sorted by relevance

/cts/tests/tests/keystore/src/android/keystore/cts/
DTestUtils.java113 String keyAlgorithm = publicKey.getAlgorithm(); in assertKeyPairSelfConsistent() local
114 if ("EC".equalsIgnoreCase(keyAlgorithm)) { in assertKeyPairSelfConsistent()
124 } else if ("RSA".equalsIgnoreCase(keyAlgorithm)) { in assertKeyPairSelfConsistent()
134 fail("Unsuported key algorithm: " + keyAlgorithm); in assertKeyPairSelfConsistent()
576 static KeyPair getKeyPairForKeyAlgorithm(String keyAlgorithm, Iterable<KeyPair> keyPairs) { in getKeyPairForKeyAlgorithm() argument
578 if (keyAlgorithm.equalsIgnoreCase(keyPair.getPublic().getAlgorithm())) { in getKeyPairForKeyAlgorithm()
582 throw new IllegalArgumentException("No KeyPair for key algorithm " + keyAlgorithm); in getKeyPairForKeyAlgorithm()
585 static Key getKeyForKeyAlgorithm(String keyAlgorithm, Iterable<? extends Key> keys) { in getKeyForKeyAlgorithm() argument
587 if (keyAlgorithm.equalsIgnoreCase(key.getAlgorithm())) { in getKeyForKeyAlgorithm()
591 throw new IllegalArgumentException("No Key for key algorithm " + keyAlgorithm); in getKeyForKeyAlgorithm()
[all …]
DMacTest.java549 String macAlgorithm, String keyAlgorithm, KeyProtection keyProtection) in assertInitSucceeds() argument
551 SecretKey key = importDefaultKatKey(keyAlgorithm, keyProtection); in assertInitSucceeds()
562 String macAlgorithm, String keyAlgorithm, KeyProtection keyProtection) in assertInitThrowsInvalidKeyException() argument
564 SecretKey key = importDefaultKatKey(keyAlgorithm, keyProtection); in assertInitThrowsInvalidKeyException()
569 + ", key algorithm: " + keyAlgorithm); in assertInitThrowsInvalidKeyException()
573 private SecretKey getDefaultKatKey(String keyAlgorithm) { in getDefaultKatKey() argument
574 return new SecretKeySpec(KAT_KEY, keyAlgorithm); in getDefaultKatKey()
577 private SecretKey importDefaultKatKey(String keyAlgorithm) throws Exception { in importDefaultKatKey() argument
579 keyAlgorithm, in importDefaultKatKey()
584 String keyAlgorithm, KeyProtection keyProtection) throws Exception { in importDefaultKatKey() argument
[all …]
DCipherTest.java1594 String keyAlgorithm = TestUtils.getCipherKeyAlgorithm(transformation); in testEntropyConsumption() local
1595 if (KeyProperties.KEY_ALGORITHM_AES.equalsIgnoreCase(keyAlgorithm)) { in testEntropyConsumption()
1613 } else if (KeyProperties.KEY_ALGORITHM_3DES.equalsIgnoreCase(keyAlgorithm)) { in testEntropyConsumption()
1627 } else if (KeyProperties.KEY_ALGORITHM_RSA.equalsIgnoreCase(keyAlgorithm)) { in testEntropyConsumption()
1644 if (KeyProperties.KEY_ALGORITHM_AES.equalsIgnoreCase(keyAlgorithm) in testEntropyConsumption()
1645 || KeyProperties.KEY_ALGORITHM_3DES.equalsIgnoreCase(keyAlgorithm)) { in testEntropyConsumption()
1647 } else if (KeyProperties.KEY_ALGORITHM_RSA.equalsIgnoreCase(keyAlgorithm)) { in testEntropyConsumption()
1670 throw new RuntimeException("Unsupported key algorithm: " + keyAlgorithm); in testEntropyConsumption()
1703 String keyAlgorithm = TestUtils.getCipherKeyAlgorithm(transformation); in getWorkingDecryptionParameterSpec() local
1704 if (KeyProperties.KEY_ALGORITHM_RSA.equalsIgnoreCase(keyAlgorithm)) { in getWorkingDecryptionParameterSpec()
[all …]
DSignatureTest.java727 String keyAlgorithm = TestUtils.getSignatureAlgorithmKeyAlgorithm(algorithm); in testLongMsgKat() local
729 && (!KeyProperties.KEY_ALGORITHM_EC.equalsIgnoreCase(keyAlgorithm))) { in testLongMsgKat()
1149 String keyAlgorithm = TestUtils.getSignatureAlgorithmKeyAlgorithm(signatureAlgorithm); in getDefaultKeyAndCertResIds() local
1150 if (KeyProperties.KEY_ALGORITHM_EC.equalsIgnoreCase(keyAlgorithm)) { in getDefaultKeyAndCertResIds()
1152 } else if (KeyProperties.KEY_ALGORITHM_RSA.equalsIgnoreCase(keyAlgorithm)) { in getDefaultKeyAndCertResIds()
1155 throw new IllegalArgumentException("Unknown key algorithm: " + keyAlgorithm); in getDefaultKeyAndCertResIds()
1160 String keyAlgorithm = TestUtils.getSignatureAlgorithmKeyAlgorithm(signatureAlgorithm); in importDefaultKatKeyPair() local
1163 if (KeyProperties.KEY_ALGORITHM_EC.equalsIgnoreCase(keyAlgorithm)) { in importDefaultKatKeyPair()
1170 } else if (KeyProperties.KEY_ALGORITHM_RSA.equalsIgnoreCase(keyAlgorithm)) { in importDefaultKatKeyPair()
1178 throw new IllegalArgumentException("Unsupported key algorithm: " + keyAlgorithm); in importDefaultKatKeyPair()
[all …]
DRSASignatureTest.java47 String keyAlgorithm = TestUtils.getSignatureAlgorithmKeyAlgorithm(algorithm);
48 if (KeyProperties.KEY_ALGORITHM_RSA.equalsIgnoreCase(keyAlgorithm)) {
/cts/tests/security/src/android/keystore/cts/
DCertificateUtils.java59 String keyAlgorithm = keyPair.getPrivate().getAlgorithm(); in createCertificate() local
61 if (keyAlgorithm.equals("RSA")) { in createCertificate()
63 } else if (keyAlgorithm.equals("EC")) { in createCertificate()
66 throw new IllegalArgumentException("Unknown key algorithm " + keyAlgorithm); in createCertificate()
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
DKeyManagementTest.java75 public final String keyAlgorithm; field in KeyManagementTest.SupportedKeyAlgorithm
80 String keyAlgorithm, String signatureAlgorithm, in SupportedKeyAlgorithm() argument
82 this.keyAlgorithm = keyAlgorithm; in SupportedKeyAlgorithm()
441 String keyAlgorithm, String signatureAlgorithm, in generateKeyAndCheckAttestation() argument
445 String.format("com.android.test.attested-%s", keyAlgorithm.toLowerCase()); in generateKeyAndCheckAttestation()
460 getWho(), keyAlgorithm, spec, deviceIdAttestationFlags); in generateKeyAndCheckAttestation()
469 keyAlgorithm, deviceIdAttestationFlags)) in generateKeyAndCheckAttestation()
478 keyAlgorithm, deviceIdAttestationFlags)) in generateKeyAndCheckAttestation()
487 keyAlgorithm)) in generateKeyAndCheckAttestation()
501 keyAlgorithm, deviceIdAttestationFlags, ex)) in generateKeyAndCheckAttestation()
[all …]