More buildins and vscode exstention <CO-AUthored, ai>

This commit is contained in:
allexanderbergmns
2026-08-25 16:20:11 +02:00
parent 5daadce7a9
commit 7ed774089e
27 changed files with 2080 additions and 122 deletions
+23
View File
@@ -0,0 +1,23 @@
// crypto.vr — hashing and encoding (part of the VuurRaaf stdlib).
//
// import crypto
// println(crypto.sha256("hello"))
// println(crypto.md5("hello"))
// println(crypto.base64_encode("hello")) // aGVsbG8=
// println(crypto.base64_decode("aGVsbG8="))
fn sha256(s) {
return sha256(s)
}
fn md5(s) {
return md5(s)
}
fn base64_encode(s) {
return base64_encode(s)
}
fn base64_decode(s) {
return base64_decode(s)
}