6.5610-project

Cryptography final project

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
# 6-5610-project

How to install Lurk:
1. `git clone https://github.com/lurk-lab/lurk.git`
2. `cd lurk`
3. `cargo install --path . --locked`

Lurk docs: https://docs.argument.xyz/

Lurk gotchas:

Q: Difference between `(cons 1 2)` and `(list 1 2)`? A: `(cons 1 2)` reduces to `(1 . 2)` and `(list 1 2)` reduces to `(1 2)` which is equivalent to `(1 . (2))`. Basically, `(cdr '(1 . 2))` returns `2` while `cdr '(1 2)` returns `(2)`.