Home
last modified time | relevance | path

Searched refs:modulusSizeBytes (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/keystore/src/android/keystore/cts/
DRsaSignaturePerformanceTest.java34 int modulusSizeBytes = (keySize + 7) / 8; in testNONEwithRSA() local
36 Arrays.stream(TEST_MESSAGE_SIZES).filter(x -> modulusSizeBytes > x).toArray(); in testNONEwithRSA()
DRSASignatureTest.java64 int modulusSizeBytes = (modulusSizeBits + 7) / 8; in testMaxMessageSizeWhenNoDigestUsed() local
67 int expectedMaxMessageSizeBytes = modulusSizeBytes - 11; in testMaxMessageSizeWhenNoDigestUsed()
DRSACipherTest.java52 int modulusSizeBytes = (modulus.bitLength() + 7) / 8; in testNoPaddingEncryptionAndDecryptionSucceedsWithInputShorterThanModulus() local
57 byte[] expectedOutput = TestUtils.leftPadWithZeroBytes(input, modulusSizeBytes); in testNoPaddingEncryptionAndDecryptionSucceedsWithInputShorterThanModulus()
DTestUtils.java887 int modulusSizeBytes = (keySizeBits + 7) / 8; in getMaxSupportedPlaintextInputSizeBytes() local
889 return modulusSizeBytes - 1; in getMaxSupportedPlaintextInputSizeBytes()
892 return modulusSizeBytes - 11; in getMaxSupportedPlaintextInputSizeBytes()
897 return modulusSizeBytes - 2 * digestOutputSizeBytes - 2; in getMaxSupportedPlaintextInputSizeBytes()
DAndroidKeyStoreTest.java1923 int modulusSizeBytes = (((RSAKey) publicKey).getModulus().bitLength() + 7) / 8; in testKeyStore_Encrypting_RSA_NONE_NOPADDING() local
1924 byte[] plainText = new byte[modulusSizeBytes]; in testKeyStore_Encrypting_RSA_NONE_NOPADDING()