- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for testEngineUpdateByteArray (0.52 sec)
-
src/test/java/jcifs/smb1/util/HMACT64Test.java
// Test engineUpdate(byte b) HMACT64 hmac = new HMACT64(TEST_KEY); hmac.engineUpdate((byte) 0x01); // No exception means success } @Test void testEngineUpdateByteArray() { // Test engineUpdate(byte[] input, int offset, int len) HMACT64 hmac = new HMACT64(TEST_KEY); hmac.engineUpdate(TEST_DATA, 0, TEST_DATA.length); // No exception means success }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/jcifs/util/HMACT64Test.java
HMACT64 hmac = new HMACT64(TEST_KEY); hmac.engineUpdate((byte) 0x01); verify(mockMd5, times(1)).update((byte) 0x01); } } @Test void testEngineUpdateByteArray() throws NoSuchAlgorithmException { // Test engineUpdate(byte[] input, int offset, int len) try (MockedStatic<Crypto> mockedCrypto = mockStatic(Crypto.class)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.6K bytes - Viewed (0)