Skip to content
Prev Previous commit
Next Next commit
Fix
  • Loading branch information
Hardvan committed Oct 6, 2024
commit b664442423afb8033e42df61bdb50295cfbb3bea
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public class A5CipherTest {
@BeforeEach
void setUp() {
// Initialize the session key and frame counter
sessionKey = BitSet.valueOf(new long[] {0b1010101010101010L}); // Example 16-bit key
frameCounter = BitSet.valueOf(new long[] {0b0000000000000001L}); // Example 16-bit frame counter
sessionKey = BitSet.valueOf(new long[] {0b1010101010101010L});
frameCounter = BitSet.valueOf(new long[] {0b0000000000000001L});
a5Cipher = new A5Cipher(sessionKey, frameCounter);
}

Expand Down