This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * build: | |
| * gcc feistel_cipher_test.c -o feistel_cipher_test | |
| * | |
| * run: | |
| * ./feistel_cipher_test | |
| * | |
| * Feistel Cipher test implementation inspired by the "Feistel Cipher - Computerphile" | |
| * Youtube video: https://youtu.be/FGhj3CGxl8I | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # Usage: privacy_preserving_contact_tracing_test.rb [options] | |
| # | |
| # Specific options: | |
| # -K, --tracing-key=TRACING_KEY Tracing key, 32 bytes, HEX encoded | |
| # -DDAILY_TRACING_KEY, Daily tracing key, 16 bytes, HEX encoded | |
| # --daily-tracing-key When provided TRACING_KEY is ignored | |
| # -t, --time=TIME Date and/ or time to use start | |
| # -d, --days=NUM_DAYS Number of days to generate identifiers for |
OlderNewer