diff options
Diffstat (limited to 'src/handlers.rs')
-rw-r--r-- | src/handlers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handlers.rs b/src/handlers.rs index 7135190..5110bd5 100644 --- a/src/handlers.rs +++ b/src/handlers.rs | |||
@@ -110,7 +110,7 @@ pub async fn authenticate_user( | |||
110 | .expect("failed to decrypt"); | 110 | .expect("failed to decrypt"); |
111 | 111 | ||
112 | // decrypt c using key dec_key | 112 | // decrypt c using key dec_key |
113 | let cipher = Aes128Cbc::new_var(&temp_key, &request.iv).unwrap(); | 113 | let cipher = Aes128Cbc::new_var(&temp_key, &request.iv.as_bytes()).unwrap(); |
114 | let auth_plaintext = cipher | 114 | let auth_plaintext = cipher |
115 | .decrypt_vec(&base64::decode(request.c).unwrap()) | 115 | .decrypt_vec(&base64::decode(request.c).unwrap()) |
116 | .unwrap(); | 116 | .unwrap(); |