Rob Durst
Rob Durst
## The current state: 
Here is a list of improvements that are not necessary for the demo, but would be nice to have: - [ ] Make usable on mobile - [x] Better message...
AFAIK, RSA isn't supposed to be used as a message encryption system. Instead, it (**asymmetric**) is better when combined with a **symmetric** system, forming a hybrid cryptosystem. As defined by...
Benchmark
As we move to actually making this thing run a little faster (#7 and #8), it might be interesting to have some benchmark data.
Johansten on Keybase had some good suggestions for improving the speed here: Gotcha.. Quick thoughts: 1) ~~You don't need to randomize more than once. The first thing that ed25519 does...
Use some of that new async/await hotness :fire:
The following sections are needed: * [ ] how it works (the technical details) * [ ] contributing (Contributing.md) * [ ] move roadmap/todos to open issues *And possibly more,...
To get the Makefile to work with my Mac, I looked at the output of the commands using realpath on my linux machine and translated them to what worked on...
While type checking is limited until we have a proper Table type, we can start defining the type signatures for Table methods now in order to allow more programs to...
Consider the following code: ``` tbl = table: name row: "Rob" end tbl.row("Foo") ``` When I execute without type checker all is well. With type checker, `.row` is not found....