Home
last modified time | relevance | path

Searched refs:allToKeymaster (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/keystore/java/android/security/keystore/
DAndroidKeyStoreKeyGeneratorSpi.java178 mKeymasterPurposes = KeyProperties.Purpose.allToKeymaster(spec.getPurposes()); in engineInit()
179 mKeymasterPaddings = KeyProperties.EncryptionPadding.allToKeymaster( in engineInit()
185 mKeymasterBlockModes = KeyProperties.BlockMode.allToKeymaster(spec.getBlockModes()); in engineInit()
212 KeyProperties.Digest.allToKeymaster(spec.getDigests()); in engineInit()
225 mKeymasterDigests = KeyProperties.Digest.allToKeymaster(spec.getDigests()); in engineInit()
DAndroidKeyStoreSpi.java470 KeyProperties.Purpose.allToKeymaster(purposes)); in setPrivateKeyEntry()
473 KeyProperties.Digest.allToKeymaster(spec.getDigests())); in setPrivateKeyEntry()
477 KeyProperties.BlockMode.allToKeymaster(spec.getBlockModes())); in setPrivateKeyEntry()
479 KeyProperties.EncryptionPadding.allToKeymaster( in setPrivateKeyEntry()
498 KeyProperties.SignaturePadding.allToKeymaster(spec.getSignaturePaddings())); in setPrivateKeyEntry()
650 KeyProperties.Digest.allToKeymaster(params.getDigests()); in setSecretKeyEntry()
663 keymasterDigests = KeyProperties.Digest.allToKeymaster(params.getDigests()); in setSecretKeyEntry()
672 KeyProperties.BlockMode.allToKeymaster(params.getBlockModes()); in setSecretKeyEntry()
687 KeyProperties.Purpose.allToKeymaster(purposes)); in setSecretKeyEntry()
692 int[] keymasterPaddings = KeyProperties.EncryptionPadding.allToKeymaster( in setSecretKeyEntry()
DKeyProperties.java108 public static int[] allToKeymaster(@PurposeEnum int purposes) { in allToKeymaster() method in KeyProperties.Purpose
341 public static int[] allToKeymaster(@Nullable @BlockModeEnum String[] blockModes) { in allToKeymaster() method in KeyProperties.BlockMode
424 public static int[] allToKeymaster(@Nullable @EncryptionPaddingEnum String[] paddings) { in allToKeymaster() method in KeyProperties.EncryptionPadding
484 static int[] allToKeymaster(@Nullable @SignaturePaddingEnum String[] paddings) { in allToKeymaster() method in KeyProperties.SignaturePadding
632 public static int[] allToKeymaster(@Nullable @DigestEnum String[] digests) { in allToKeymaster() method in KeyProperties.Digest
DAndroidKeyStoreKeyPairGeneratorSpi.java314 mKeymasterPurposes = KeyProperties.Purpose.allToKeymaster(spec.getPurposes()); in initialize()
315 mKeymasterBlockModes = KeyProperties.BlockMode.allToKeymaster(spec.getBlockModes()); in initialize()
316 mKeymasterEncryptionPaddings = KeyProperties.EncryptionPadding.allToKeymaster( in initialize()
334 mKeymasterSignaturePaddings = KeyProperties.SignaturePadding.allToKeymaster( in initialize()
337 mKeymasterDigests = KeyProperties.Digest.allToKeymaster(spec.getDigests()); in initialize()
825 KeyProperties.SignaturePadding.allToKeymaster( in getCertificateSignatureAlgorithm()
878 for (int keymasterDigest : KeyProperties.Digest.allToKeymaster(authorizedKeyDigests)) { in getAvailableKeymasterSignatureDigests()
883 : KeyProperties.Digest.allToKeymaster(supportedSignatureDigests)) { in getAvailableKeymasterSignatureDigests()