Searched refs:KEY_SIZE_BITS (Results 1 – 9 of 9) sorted by relevance
27 private static final int KEY_SIZE_BITS = 256; field in TertiaryKeyGenerator36 mKeyGenerator.init(KEY_SIZE_BITS, secureRandom); in TertiaryKeyGenerator()
28 private static final int KEY_SIZE_BITS = 256; field in CryptoTestUtils34 keyGenerator.init(KEY_SIZE_BITS); in generateAesKey()
37 private static final int KEY_SIZE_BITS = 256; field in TertiaryKeyGeneratorTest60 assertThat(secretKey.getEncoded()).hasLength(KEY_SIZE_BITS / 8); in generate_generates256BitKeys()
45 private static final int KEY_SIZE_BITS = 256; field in FingerprintMixerTest77 byte[] keyBytes = new byte[KEY_SIZE_BITS / 8]; in create_withUnencodableSecretKey_throwsInvalidKeyException()182 byte[] keyBytes = new byte[KEY_SIZE_BITS / 8]; in randomKey()
49 static final int KEY_SIZE_BITS = 256; field in RecoverableKeyGenerator101 mKeyGenerator.init(KEY_SIZE_BITS); in generateAndStoreKey()
73 private static final int KEY_SIZE_BITS = 256; field in PlatformKeyManager486 keyGenerator.init(KEY_SIZE_BITS); in generateAesKey()
776 if (keyBytes.length != RecoverableKeyGenerator.KEY_SIZE_BITS / Byte.SIZE) { in importKeyWithMetadata()778 + RecoverableKeyGenerator.KEY_SIZE_BITS); in importKeyWithMetadata()780 "The given key does not contain " + RecoverableKeyGenerator.KEY_SIZE_BITS in importKeyWithMetadata()
48 private static final int KEY_SIZE_BITS = 256; field in ShadowRecoveryController88 keyGenerator.init(KEY_SIZE_BITS); in generateKey()
57 private static final int KEY_SIZE_BYTES = RecoverableKeyGenerator.KEY_SIZE_BITS / Byte.SIZE;