diff options
author | Yigit Sever | 2021-04-14 03:27:27 +0300 |
---|---|---|
committer | Yigit Sever | 2021-04-14 19:11:49 +0300 |
commit | e466f25ecfa356137523ee597b9fc6ab0da5df22 (patch) | |
tree | 06946f8811f90cf89ddc0afe685f15e9b3cf6cda /Cargo.toml | |
parent | db5a025bae30bfb6044e87eb196cc6bb63eb68d3 (diff) | |
download | gradecoin-e466f25ecfa356137523ee597b9fc6ab0da5df22.tar.gz gradecoin-e466f25ecfa356137523ee597b9fc6ab0da5df22.tar.bz2 gradecoin-e466f25ecfa356137523ee597b9fc6ab0da5df22.zip |
[WIP] Initial implementation of user auth
There is a dance involved and everything
Write down specs for RSA and AES, padding scheme, ugh.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -20,6 +20,9 @@ blake2 = "0.9.1" | |||
20 | hex-literal = "0.3.1" | 20 | hex-literal = "0.3.1" |
21 | jsonwebtoken = "7.2.0" | 21 | jsonwebtoken = "7.2.0" |
22 | md-5 = "0.9.1" | 22 | md-5 = "0.9.1" |
23 | rsa = "0.4.0" | ||
24 | base64 = "0.13.0" | ||
25 | sha2 = "0.9.3" | ||
23 | 26 | ||
24 | [dev-dependencies] | 27 | [dev-dependencies] |
25 | serde_test = "1.0.117" | 28 | serde_test = "1.0.117" |