aboutsummaryrefslogtreecommitdiff
path: root/lib/std/crypto.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/crypto.zig')
-rw-r--r--lib/std/crypto.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/crypto.zig b/lib/std/crypto.zig
index a90f5ec0d1..4c35a9e9ae 100644
--- a/lib/std/crypto.zig
+++ b/lib/std/crypto.zig
@@ -86,6 +86,7 @@ pub const onetimeauth = struct {
///
/// Password hashing functions must be used whenever sensitive data has to be directly derived from a password.
pub const pwhash = struct {
+ pub const bcrypt = @import("crypto/bcrypt.zig");
pub const pbkdf2 = @import("crypto/pbkdf2.zig").pbkdf2;
};
@@ -130,6 +131,7 @@ test "crypto" {
}
_ = @import("crypto/aes.zig");
+ _ = @import("crypto/bcrypt.zig");
_ = @import("crypto/blake2.zig");
_ = @import("crypto/blake3.zig");
_ = @import("crypto/chacha20.zig");