diff options
author | Yigit Sever | 2021-04-14 18:06:06 +0300 |
---|---|---|
committer | Yigit Sever | 2021-04-14 19:12:49 +0300 |
commit | 71e692ba2a3aa271f7ee1e20d16ac69de70acc5b (patch) | |
tree | 2e660d26a3c5445842365951e6eeb5fd4e751434 /src/schema.rs | |
parent | 3e333c952a54453bd877c556a09f2e8e0c434c87 (diff) | |
download | gradecoin-71e692ba2a3aa271f7ee1e20d16ac69de70acc5b.tar.gz gradecoin-71e692ba2a3aa271f7ee1e20d16ac69de70acc5b.tar.bz2 gradecoin-71e692ba2a3aa271f7ee1e20d16ac69de70acc5b.zip |
[WIP] Rough authentication process done
Diffstat (limited to 'src/schema.rs')
-rw-r--r-- | src/schema.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/schema.rs b/src/schema.rs index f159d83..fb88640 100644 --- a/src/schema.rs +++ b/src/schema.rs | |||
@@ -190,6 +190,7 @@ pub struct AuthRequest { | |||
190 | #[derive(Serialize, Deserialize, Debug)] | 190 | #[derive(Serialize, Deserialize, Debug)] |
191 | pub struct InitialAuthRequest { | 191 | pub struct InitialAuthRequest { |
192 | pub c: String, | 192 | pub c: String, |
193 | pub iv: [u8; 32], | ||
193 | pub key: String, | 194 | pub key: String, |
194 | } | 195 | } |
195 | 196 | ||