TSLexi
Newbie level 5
Hi guys! I'm trying to design an OTP encryption chip for a telephone. Here's the bit file:
The key pin of module will be connected to a PUF to generate a random stream. In one instance of the module, the cleartext pin will be connected to the microphone and the ciphertext pin will be connected to wherever the sound goes after leaving the mic, in another instance vice versa. Aka, it's in series with the phone I/O.
Obviously, this isn't for a real telephone, as I doubt telephone lines have a 1 bit bandwidth. It was a little project I'm doing to learn Verilog. I already know C++, and I'm trying to get into hardware design.
Does the encrypt module need a clock signal, or can it be asynchronous.
Thanks!
Code Verilog - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 module encrypt(cleartext, key, ciphertext); input cleartext; input key; output ciphertext; wire cleartext; wire key; wire ciphertext; always @(cleartext or key) ciphertext = cleartext ^ key; endmodule
The key pin of module will be connected to a PUF to generate a random stream. In one instance of the module, the cleartext pin will be connected to the microphone and the ciphertext pin will be connected to wherever the sound goes after leaving the mic, in another instance vice versa. Aka, it's in series with the phone I/O.
Obviously, this isn't for a real telephone, as I doubt telephone lines have a 1 bit bandwidth. It was a little project I'm doing to learn Verilog. I already know C++, and I'm trying to get into hardware design.
Does the encrypt module need a clock signal, or can it be asynchronous.
Thanks!
Last edited by a moderator: