From ce3b4c99f02d0bd921bc160efa8be57eb52e0dcf Mon Sep 17 00:00:00 2001 From: dimgigov Date: Fri, 5 Jun 2026 21:34:43 +0300 Subject: [PATCH] Remove temporary _test_crypto directory --- _test_crypto/bux.toml | 1 - _test_crypto/src/Main.bux | 18 ------------------ 2 files changed, 19 deletions(-) delete mode 100644 _test_crypto/bux.toml delete mode 100644 _test_crypto/src/Main.bux 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; -}