diff options
author | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2017-06-16 21:27:31 -0400 |
---|---|---|
committer | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2017-06-16 21:27:41 -0400 |
commit | dc642430468a1942246642775040f9784ca3e8f2 (patch) | |
tree | 5f2475e1744b6f318f1a0715b9ec1568d7e1d193 /src/lib.rs | |
parent | 285075f369690295a0ffc83fdb5b68f3460b30d5 (diff) |
Basic encryption and password validation.
This is a placeholder encryption scheme for authentication.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,11 +1,10 @@ #[macro_use] extern crate horrorshow; -extern crate rust_crypto; extern crate sqlite; pub mod systemd; pub mod render; -mod auth; +pub mod auth; #[cfg(test)] mod tests { |