diff --git a/_test_crypto/bux.toml b/_test_crypto/bux.toml deleted file mode 100644 index 0bbf836..0000000 --- a/_test_crypto/bux.toml +++ /dev/null @@ -1 +0,0 @@ -[Package] diff --git a/_test_crypto/src/Main.bux b/_test_crypto/src/Main.bux deleted file mode 100644 index 51523e7..0000000 --- a/_test_crypto/src/Main.bux +++ /dev/null @@ -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; -}