Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix
  • Loading branch information
Hardvan committed Oct 6, 2024
commit a1ce5ae0ca8996ec8067f4d9f14543314ccd3dc5
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void testEncryptDecrypt() throws Exception {

@Test
public void testBytesToHex() {
byte[] bytes = new byte[]{0, 1, 15, 16, (byte) 255}; // Test with diverse byte values
byte[] bytes = new byte[] {0, 1, 15, 16, (byte) 255}; // Test with diverse byte values
String hex = AESEncryption.bytesToHex(bytes);
assertEquals("00010F10FF", hex, "Hex representation should match the expected value");
}
Expand Down