Remove temporary _test_crypto directory

This commit is contained in:
2026-06-05 21:34:43 +03:00
parent fe31ddbc4b
commit ce3b4c99f0
2 changed files with 0 additions and 19 deletions
-1
View File
@@ -1 +0,0 @@
[Package]
-18
View File
@@ -1,18 +0,0 @@
import Std::Io::{PrintLine};
import Std::Crypto;
func Main() -> int {
PrintLine("SHA256:");
PrintLine(Crypto_Sha256("hello"));
PrintLine("HMAC-SHA256:");
PrintLine(Crypto_HmacSha256("secret", "message"));
PrintLine("Base64 encode:");
PrintLine(Crypto_Base64Encode("hello"));
PrintLine("Random bytes (base64):");
PrintLine(Crypto_RandomBytes(16));
return 0;
}