Library: Crypto

securitybuilt-in

Hashing and encoding helpers (lightweight). For production cryptography, we can later add proper SHA256/HMAC/AES with audited implementations.

Install

# Built-in (no install needed)
# If packaged later:
# b3d pkg install crypto

API

Example

let h = hash_sha256("password");
print(h);
print(encode_base64("secret"));