Hashing and encoding helpers (lightweight). For production cryptography, we can later add proper SHA256/HMAC/AES with audited implementations.
# Built-in (no install needed)
# If packaged later:
# b3d pkg install crypto
let h = hash_sha256("password");
print(h);
print(encode_base64("secret"));