OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KeyAlgorithm
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/keystore/java/android/security/
KeyPairGeneratorSpec.java
335
KeyProperties.
KeyAlgorithm
.toKeymasterAsymmetricKeyAlgorithm(keyType);
/frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreProvider.java
176
@NonNull @KeyProperties.KeyAlgorithmEnum String
keyAlgorithm
,
180
KeyFactory keyFactory = KeyFactory.getInstance(
keyAlgorithm
);
184
"Failed to obtain " +
keyAlgorithm
+ " KeyFactory", e);
188
if (KeyProperties.KEY_ALGORITHM_EC.equalsIgnoreCase(
keyAlgorithm
)) {
190
} else if (KeyProperties.KEY_ALGORITHM_RSA.equalsIgnoreCase(
keyAlgorithm
)) {
194
+
keyAlgorithm
);
201
String
keyAlgorithm
= publicKey.getAlgorithm();
202
if (KeyProperties.KEY_ALGORITHM_EC.equalsIgnoreCase(
keyAlgorithm
)) {
205
} else if (KeyProperties.KEY_ALGORITHM_RSA.equalsIgnoreCase(
keyAlgorithm
)) {
210
+
keyAlgorithm
);
[
all
...]
KeyProperties.java
168
public static abstract class
KeyAlgorithm
{
169
private
KeyAlgorithm
() {}
AndroidKeyStoreKeyGeneratorSpi.java
318
keyAlgorithmJCA = KeyProperties.
KeyAlgorithm
.fromKeymasterSecretKeyAlgorithm(
AndroidKeyStoreSpi.java
289
String
keyAlgorithm
= key.getAlgorithm();
291
if (KeyProperties.KEY_ALGORITHM_EC.equalsIgnoreCase(
keyAlgorithm
)) {
304
} else if (KeyProperties.KEY_ALGORITHM_RSA.equalsIgnoreCase(
keyAlgorithm
)) {
333
throw new KeyStoreException("Unsupported key algorithm: " +
keyAlgorithm
);
466
KeyProperties.
KeyAlgorithm
.toKeymasterAsymmetricKeyAlgorithm(
628
KeyProperties.
KeyAlgorithm
.toKeymasterSecretKeyAlgorithm(key.getAlgorithm());
639
KeyProperties.
KeyAlgorithm
.toKeymasterDigest(key.getAlgorithm());
[
all
...]
AndroidKeyStoreKeyPairGeneratorSpi.java
212
KeyProperties.
KeyAlgorithm
.toKeymasterAsymmetricKeyAlgorithm(
312
jcaKeyAlgorithm = KeyProperties.
KeyAlgorithm
.fromKeymasterAsymmetricKeyAlgorithm(
[
all
...]
Completed in 94 milliseconds