Home
last modified time | relevance | path

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

/cts/tests/tests/keystore/src/android/keystore/cts/
DAESCipherNistCavpKatTest.java158 String blockMode = fileName.substring(0, 3); in runTestsForKatFile() local
159 if ("CFB".equals(blockMode)) { in runTestsForKatFile()
160 blockMode = fileName.substring(0, 4); in runTestsForKatFile()
162 runTestsForKatFile(blockMode, entryContents); in runTestsForKatFile()
166 private void runTestsForKatFile(String blockMode, byte[] fileContents) throws Exception { in runTestsForKatFile() argument
230 runKatTest(blockMode, encrypt, testVector); in runTestsForKatFile()
DCipherTest.java1537 String blockMode = in testEntropyConsumption() local
1540 switch (blockMode) { in testEntropyConsumption()
1552 throw new RuntimeException("Unsupported block mode " + blockMode); in testEntropyConsumption()
1555 String blockMode = in testEntropyConsumption() local
1558 switch (blockMode) { in testEntropyConsumption()
1566 throw new RuntimeException("Unsupported block mode " + blockMode); in testEntropyConsumption()
1648 String blockMode = TestUtils.getCipherBlockMode(transformation); in getWorkingDecryptionParameterSpec() local
1649 if (KeyProperties.BLOCK_MODE_ECB.equalsIgnoreCase(blockMode)) { in getWorkingDecryptionParameterSpec()
1651 } else if ((KeyProperties.BLOCK_MODE_CBC.equalsIgnoreCase(blockMode)) in getWorkingDecryptionParameterSpec()
1652 || (KeyProperties.BLOCK_MODE_CTR.equalsIgnoreCase(blockMode))) { in getWorkingDecryptionParameterSpec()
[all …]
DImportWrappedKeyTest.java383 DERTaggedObject blockMode = new DERTaggedObject(true, 4, blockModeSet); in makeAuthList() local
398 allItems.add(blockMode); in makeAuthList()
DTestUtils.java903 String blockMode = TestUtils.getCipherBlockMode(transformation); in getMinimalWorkingImportParametersForCipheringWith() local
905 if (KeyProperties.BLOCK_MODE_ECB.equalsIgnoreCase(blockMode)) { in getMinimalWorkingImportParametersForCipheringWith()
913 .setBlockModes(blockMode) in getMinimalWorkingImportParametersForCipheringWith()