summaryrefslogtreecommitdiff
path: root/src/auth/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/auth/mod.rs')
-rw-r--r--src/auth/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auth/mod.rs b/src/auth/mod.rs
index 728c246..7f995f8 100644
--- a/src/auth/mod.rs
+++ b/src/auth/mod.rs
@@ -4,8 +4,8 @@ use crypto::bcrypt_pbkdf::bcrypt_pbkdf;
#[derive(Debug, PartialEq, Eq)]
pub struct HashedPassword {
- salt: String,
- enc: String,
+ pub salt: String,
+ pub enc: String,
}
// TODO: Configurable number of iterations.