Sha256: 1553f61b1f3e8da784ab209c29931db1f4291b58c6cd6e30d86742faa4945e25
Contents?: true
Size: 285 Bytes
Versions: 4
Compression:
Stored size: 285 Bytes
Contents
extern crate libpasta; use libpasta::primitives::Bcrypt; fn main() { let config = libpasta::Config::with_primitive(Bcrypt::new(15)); let password_hash = config.hash_password("hunter2"); println!("The hashed password is: '{}'", password_hash); // Prints bcrypt hash }
Version data entries
4 entries across 4 versions & 1 rubygems