WTAD explain how a Pseudo Random Bit Sequence is generated. How is the length of the PRBS determined?
A data rate of 8Kbits/sec is to be encrypted such that the PRBS does not repeat itself for 1 hour. What is the minimum number of shift registers that can be used?
Data rate - 8Kbits/s = 8000 bits/s
Duration - 1 hour = 3600 seconds
Total bits = 8000 bits/s * 3600 s = 28,800,000 bits
L = 2^n - 1
2n - 1 ≥ 28,800,000
2n ≥ 28,800,001
n ≥ log2 (28,800,001) = 24.82
n = 25
Data being sent is 1101 and the crypto (bit for bit) is 0110. What is the encrypted data that is sent?
1 xor 0 = 1
1 xor 1 = 0
0 xor 1 = 1
1 xor 0 = 1
Encrypted data = 1011