- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for expandNFold (0.06 sec)
-
src/main/java/jcifs/pac/PacMac.java
cipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(keybytes, "AES"), new IvParameterSpec(ZERO_IV, 0, ZERO_IV.length)); if ( constant.length != cipher.getBlockSize() ) { constant = expandNFold(constant, cipher.getBlockSize()); } byte[] enc = constant; int klen = keybytes.length; byte[] dk = new byte[klen]; for ( int n = 0; n < klen; ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7K bytes - Viewed (0) -
src/test/java/jcifs/tests/PACTest.java
} } private static void verifyNfold ( int n, String string, String expect ) { byte[] expanded = PacMac.expandNFold(string.getBytes(StandardCharsets.US_ASCII), n / 8); Assert.assertEquals(expect, Hexdump.toHexString(expanded).toLowerCase(Locale.ROOT)); } @Test
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Oct 01 12:01:17 UTC 2023 - 22.3K bytes - Viewed (0)