├── .github └── workflows │ ├── cancel.yml │ └── main.yml ├── CHANGELOG.md ├── CryptoLogo.png ├── LICENSE.md ├── README.md ├── SECURITY.md ├── flash ├── .gitignore ├── Install.hx ├── Run.hx ├── install.hxml └── run.hxml ├── haxelib.json ├── src └── haxe │ └── crypto │ ├── Adler32.hx │ ├── Aes.hx │ ├── BCrypt.hx │ ├── Blake2b.hx │ ├── Blake2s.hx │ ├── Blake3.hx │ ├── BlowFish.hx │ ├── ChaCha.hx │ ├── ChaCha20Poly1305.hx │ ├── Crc32.hx │ ├── Des.hx │ ├── Hmac.hx │ ├── Md5.hx │ ├── Pbkdf2.hx │ ├── Poly1305.hx │ ├── RC4.hx │ ├── Ripemd160.hx │ ├── SCrypt.hx │ ├── Salsa20.hx │ ├── Sha1.hx │ ├── Sha224.hx │ ├── Sha256.hx │ ├── Sha384.hx │ ├── Sha512.hx │ ├── TripleDes.hx │ ├── TwoFish.hx │ ├── XChaCha20.hx │ ├── XChaCha20Poly1305.hx │ ├── XSalsa20.hx │ ├── XSalsa20Poly1305.hx │ ├── mode │ ├── CBC.hx │ ├── CCM.hx │ ├── CFB.hx │ ├── CMAC.hx │ ├── CTR.hx │ ├── EAX.hx │ ├── ECB.hx │ ├── FF1.hx │ ├── GCM.hx │ ├── GCMSIV.hx │ ├── KW.hx │ ├── KWP.hx │ ├── Mode.hx │ ├── OFB.hx │ ├── PCBC.hx │ ├── SIV.hx │ └── XTS.hx │ ├── padding │ ├── AnsiX923.hx │ ├── BitPadding.hx │ ├── ISO10126.hx │ ├── NoPadding.hx │ ├── NullPadding.hx │ ├── PKCS7.hx │ ├── Padding.hx │ ├── SpacePadding.hx │ └── TBC.hx │ └── random │ ├── SecureRandom.hx │ └── csprng │ └── AesCtrDrbg.hx └── tests ├── RunCi.hx ├── RunCi.hxml ├── compile-cpp.hxml ├── compile-cppia-host.hxml ├── compile-cppia.hxml ├── compile-cs-unsafe.hxml ├── compile-cs.hxml ├── compile-each.hxml ├── compile-flash.hxml ├── compile-hl.hxml ├── compile-java.hxml ├── compile-js.hxml ├── compile-jvm-only.hxml ├── compile-jvm.hxml ├── compile-lua.hxml ├── compile-macro.hxml ├── compile-neko.hxml ├── compile-php.hxml ├── compile-python.hxml ├── compile.hxml ├── cs_drivers ├── Mono.Data.Sqlite.dll ├── System.Data.dll └── System.Xml.dll ├── java_drivers ├── mysql-connector-java-5.1.32-bin.jar └── sqlite-jdbc-3.7.2.jar ├── native_cs ├── hxcs_build.txt └── src │ ├── NoPackage.cs │ └── haxe │ └── test │ ├── AttrWithNullType.cs │ ├── Base.cs │ ├── Generic1.cs │ ├── GenericHelper.cs │ ├── MyClass.cs │ ├── OverloadInterface1.cs │ ├── OverloadInterface2.cs │ ├── StaticAndInstanceClash.cs │ ├── TEnum.cs │ └── TEnumWithValue.cs ├── native_java ├── hxjava_build.txt └── src │ └── haxe │ ├── UpperCasePackage │ ├── SomeClass.java │ └── lowercase.java │ └── test │ ├── Base.java │ ├── Generic1.java │ ├── GenericHelper.java │ ├── MyClass.java │ ├── MyDefaultInterface.java │ ├── MyDefaultSubInterface.java │ ├── OverloadInterface1.java │ ├── OverloadInterface2.java │ ├── StaticAndInstanceClash.java │ ├── TEnum.java │ └── lowerCaseClass.java ├── native_swf ├── Lib.as ├── Lib2.as ├── NsCls.as ├── ParentCtorWithDefaultStringArgument.as ├── PropClass.as ├── PropIface.as ├── ns1.as └── ns2.as ├── runci ├── Config.hx ├── Deployment.hx ├── Indexer.hx ├── Linux.hx ├── System.hx ├── TestTarget.hx └── targets │ ├── As3.hx │ ├── Cpp.hx │ ├── Cs.hx │ ├── Flash.hx │ ├── Hl.hx │ ├── Java.hx │ ├── Js.hx │ ├── Jvm.hx │ ├── Lua.hx │ ├── Macro.hx │ ├── Neko.hx │ ├── Php.hx │ └── Python.hx └── src └── unit ├── HelperMacros.hx ├── Test.hx ├── TestIssues.hx ├── TestMain.hx ├── crypto ├── Adler32Test.hx ├── AesCtrDrbgTest.hx ├── AesTest.hx ├── BCryptTest.hx ├── BlowFishTest.hx ├── ChaCha20Poly1305Test.hx ├── ChaChaTest.hx ├── Crc32Test.hx ├── HmacTest.hx ├── Md5Test.hx ├── ModeTest.hx ├── PaddingTest.hx ├── Pbkdf2Test.hx ├── Poly1305Test.hx ├── RC4Test.hx ├── Ripemd160Test.hx ├── SCryptTest.hx ├── Salsa20Test.hx ├── SecureRandomTest.hx ├── Sha1Test.hx ├── Sha224Test.hx ├── Sha256Test.hx ├── Sha384Test.hx ├── Sha512Test.hx ├── TripleDesTest.hx ├── TwoFishTest.hx ├── XChaCha20Poly1305Test.hx ├── XChaCha20Test.hx ├── XSalsa20Poly1305Test.hx └── XSalsa20Test.hx └── issues └── .gitkeep /.github/workflows/cancel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/.github/workflows/cancel.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CryptoLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/CryptoLogo.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/SECURITY.md -------------------------------------------------------------------------------- /flash/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.app 3 | flashplayerdebugger 4 | LGPL/ 5 | license.pdf -------------------------------------------------------------------------------- /flash/Install.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/flash/Install.hx -------------------------------------------------------------------------------- /flash/Run.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/flash/Run.hx -------------------------------------------------------------------------------- /flash/install.hxml: -------------------------------------------------------------------------------- 1 | -cp flash 2 | --run Install -------------------------------------------------------------------------------- /flash/run.hxml: -------------------------------------------------------------------------------- 1 | -cp flash 2 | --run Run -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/haxelib.json -------------------------------------------------------------------------------- /src/haxe/crypto/Adler32.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Adler32.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Aes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Aes.hx -------------------------------------------------------------------------------- /src/haxe/crypto/BCrypt.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/BCrypt.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Blake2b.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Blake2b.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Blake2s.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Blake2s.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Blake3.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Blake3.hx -------------------------------------------------------------------------------- /src/haxe/crypto/BlowFish.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/BlowFish.hx -------------------------------------------------------------------------------- /src/haxe/crypto/ChaCha.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/ChaCha.hx -------------------------------------------------------------------------------- /src/haxe/crypto/ChaCha20Poly1305.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/ChaCha20Poly1305.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Crc32.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Crc32.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Des.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Des.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Hmac.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Hmac.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Md5.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Md5.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Pbkdf2.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Pbkdf2.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Poly1305.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Poly1305.hx -------------------------------------------------------------------------------- /src/haxe/crypto/RC4.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/RC4.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Ripemd160.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Ripemd160.hx -------------------------------------------------------------------------------- /src/haxe/crypto/SCrypt.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/SCrypt.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Salsa20.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Salsa20.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Sha1.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Sha1.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Sha224.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Sha224.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Sha256.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Sha256.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Sha384.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Sha384.hx -------------------------------------------------------------------------------- /src/haxe/crypto/Sha512.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/Sha512.hx -------------------------------------------------------------------------------- /src/haxe/crypto/TripleDes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/TripleDes.hx -------------------------------------------------------------------------------- /src/haxe/crypto/TwoFish.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/TwoFish.hx -------------------------------------------------------------------------------- /src/haxe/crypto/XChaCha20.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/XChaCha20.hx -------------------------------------------------------------------------------- /src/haxe/crypto/XChaCha20Poly1305.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/XChaCha20Poly1305.hx -------------------------------------------------------------------------------- /src/haxe/crypto/XSalsa20.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/XSalsa20.hx -------------------------------------------------------------------------------- /src/haxe/crypto/XSalsa20Poly1305.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/XSalsa20Poly1305.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/CBC.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/CBC.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/CCM.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/CCM.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/CFB.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/CFB.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/CMAC.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/CMAC.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/CTR.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/CTR.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/EAX.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/EAX.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/ECB.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/ECB.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/FF1.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/FF1.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/GCM.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/GCM.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/GCMSIV.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/GCMSIV.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/KW.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/KW.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/KWP.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/KWP.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/Mode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/Mode.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/OFB.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/OFB.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/PCBC.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/PCBC.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/SIV.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/SIV.hx -------------------------------------------------------------------------------- /src/haxe/crypto/mode/XTS.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/mode/XTS.hx -------------------------------------------------------------------------------- /src/haxe/crypto/padding/AnsiX923.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/padding/AnsiX923.hx -------------------------------------------------------------------------------- /src/haxe/crypto/padding/BitPadding.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/padding/BitPadding.hx -------------------------------------------------------------------------------- /src/haxe/crypto/padding/ISO10126.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/padding/ISO10126.hx -------------------------------------------------------------------------------- /src/haxe/crypto/padding/NoPadding.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/padding/NoPadding.hx -------------------------------------------------------------------------------- /src/haxe/crypto/padding/NullPadding.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/padding/NullPadding.hx -------------------------------------------------------------------------------- /src/haxe/crypto/padding/PKCS7.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/padding/PKCS7.hx -------------------------------------------------------------------------------- /src/haxe/crypto/padding/Padding.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/padding/Padding.hx -------------------------------------------------------------------------------- /src/haxe/crypto/padding/SpacePadding.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/padding/SpacePadding.hx -------------------------------------------------------------------------------- /src/haxe/crypto/padding/TBC.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/padding/TBC.hx -------------------------------------------------------------------------------- /src/haxe/crypto/random/SecureRandom.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/random/SecureRandom.hx -------------------------------------------------------------------------------- /src/haxe/crypto/random/csprng/AesCtrDrbg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/src/haxe/crypto/random/csprng/AesCtrDrbg.hx -------------------------------------------------------------------------------- /tests/RunCi.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/RunCi.hx -------------------------------------------------------------------------------- /tests/RunCi.hxml: -------------------------------------------------------------------------------- 1 | --main RunCi 2 | --interp -------------------------------------------------------------------------------- /tests/compile-cpp.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-cpp.hxml -------------------------------------------------------------------------------- /tests/compile-cppia-host.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-cppia-host.hxml -------------------------------------------------------------------------------- /tests/compile-cppia.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-cppia.hxml -------------------------------------------------------------------------------- /tests/compile-cs-unsafe.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-cs-unsafe.hxml -------------------------------------------------------------------------------- /tests/compile-cs.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-cs.hxml -------------------------------------------------------------------------------- /tests/compile-each.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-each.hxml -------------------------------------------------------------------------------- /tests/compile-flash.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-flash.hxml -------------------------------------------------------------------------------- /tests/compile-hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-hl.hxml -------------------------------------------------------------------------------- /tests/compile-java.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-java.hxml -------------------------------------------------------------------------------- /tests/compile-js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-js.hxml -------------------------------------------------------------------------------- /tests/compile-jvm-only.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-jvm-only.hxml -------------------------------------------------------------------------------- /tests/compile-jvm.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-jvm.hxml -------------------------------------------------------------------------------- /tests/compile-lua.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-lua.hxml -------------------------------------------------------------------------------- /tests/compile-macro.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-macro.hxml -------------------------------------------------------------------------------- /tests/compile-neko.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-neko.hxml -------------------------------------------------------------------------------- /tests/compile-php.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-php.hxml -------------------------------------------------------------------------------- /tests/compile-python.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile-python.hxml -------------------------------------------------------------------------------- /tests/compile.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/compile.hxml -------------------------------------------------------------------------------- /tests/cs_drivers/Mono.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/cs_drivers/Mono.Data.Sqlite.dll -------------------------------------------------------------------------------- /tests/cs_drivers/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/cs_drivers/System.Data.dll -------------------------------------------------------------------------------- /tests/cs_drivers/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/cs_drivers/System.Xml.dll -------------------------------------------------------------------------------- /tests/java_drivers/mysql-connector-java-5.1.32-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/java_drivers/mysql-connector-java-5.1.32-bin.jar -------------------------------------------------------------------------------- /tests/java_drivers/sqlite-jdbc-3.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/java_drivers/sqlite-jdbc-3.7.2.jar -------------------------------------------------------------------------------- /tests/native_cs/hxcs_build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/hxcs_build.txt -------------------------------------------------------------------------------- /tests/native_cs/src/NoPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/NoPackage.cs -------------------------------------------------------------------------------- /tests/native_cs/src/haxe/test/AttrWithNullType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/haxe/test/AttrWithNullType.cs -------------------------------------------------------------------------------- /tests/native_cs/src/haxe/test/Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/haxe/test/Base.cs -------------------------------------------------------------------------------- /tests/native_cs/src/haxe/test/Generic1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/haxe/test/Generic1.cs -------------------------------------------------------------------------------- /tests/native_cs/src/haxe/test/GenericHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/haxe/test/GenericHelper.cs -------------------------------------------------------------------------------- /tests/native_cs/src/haxe/test/MyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/haxe/test/MyClass.cs -------------------------------------------------------------------------------- /tests/native_cs/src/haxe/test/OverloadInterface1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/haxe/test/OverloadInterface1.cs -------------------------------------------------------------------------------- /tests/native_cs/src/haxe/test/OverloadInterface2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/haxe/test/OverloadInterface2.cs -------------------------------------------------------------------------------- /tests/native_cs/src/haxe/test/StaticAndInstanceClash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/haxe/test/StaticAndInstanceClash.cs -------------------------------------------------------------------------------- /tests/native_cs/src/haxe/test/TEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/haxe/test/TEnum.cs -------------------------------------------------------------------------------- /tests/native_cs/src/haxe/test/TEnumWithValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_cs/src/haxe/test/TEnumWithValue.cs -------------------------------------------------------------------------------- /tests/native_java/hxjava_build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/hxjava_build.txt -------------------------------------------------------------------------------- /tests/native_java/src/haxe/UpperCasePackage/SomeClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/UpperCasePackage/SomeClass.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/UpperCasePackage/lowercase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/UpperCasePackage/lowercase.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/Base.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/Base.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/Generic1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/Generic1.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/GenericHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/GenericHelper.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/MyClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/MyClass.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/MyDefaultInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/MyDefaultInterface.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/MyDefaultSubInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/MyDefaultSubInterface.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/OverloadInterface1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/OverloadInterface1.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/OverloadInterface2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/OverloadInterface2.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/StaticAndInstanceClash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/StaticAndInstanceClash.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/TEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/TEnum.java -------------------------------------------------------------------------------- /tests/native_java/src/haxe/test/lowerCaseClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_java/src/haxe/test/lowerCaseClass.java -------------------------------------------------------------------------------- /tests/native_swf/Lib.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_swf/Lib.as -------------------------------------------------------------------------------- /tests/native_swf/Lib2.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_swf/Lib2.as -------------------------------------------------------------------------------- /tests/native_swf/NsCls.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_swf/NsCls.as -------------------------------------------------------------------------------- /tests/native_swf/ParentCtorWithDefaultStringArgument.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_swf/ParentCtorWithDefaultStringArgument.as -------------------------------------------------------------------------------- /tests/native_swf/PropClass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_swf/PropClass.as -------------------------------------------------------------------------------- /tests/native_swf/PropIface.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_swf/PropIface.as -------------------------------------------------------------------------------- /tests/native_swf/ns1.as: -------------------------------------------------------------------------------- 1 | package { 2 | public namespace ns1; 3 | } 4 | -------------------------------------------------------------------------------- /tests/native_swf/ns2.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/native_swf/ns2.as -------------------------------------------------------------------------------- /tests/runci/Config.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/Config.hx -------------------------------------------------------------------------------- /tests/runci/Deployment.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/Deployment.hx -------------------------------------------------------------------------------- /tests/runci/Indexer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/Indexer.hx -------------------------------------------------------------------------------- /tests/runci/Linux.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/Linux.hx -------------------------------------------------------------------------------- /tests/runci/System.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/System.hx -------------------------------------------------------------------------------- /tests/runci/TestTarget.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/TestTarget.hx -------------------------------------------------------------------------------- /tests/runci/targets/As3.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/As3.hx -------------------------------------------------------------------------------- /tests/runci/targets/Cpp.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Cpp.hx -------------------------------------------------------------------------------- /tests/runci/targets/Cs.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Cs.hx -------------------------------------------------------------------------------- /tests/runci/targets/Flash.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Flash.hx -------------------------------------------------------------------------------- /tests/runci/targets/Hl.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Hl.hx -------------------------------------------------------------------------------- /tests/runci/targets/Java.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Java.hx -------------------------------------------------------------------------------- /tests/runci/targets/Js.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Js.hx -------------------------------------------------------------------------------- /tests/runci/targets/Jvm.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Jvm.hx -------------------------------------------------------------------------------- /tests/runci/targets/Lua.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Lua.hx -------------------------------------------------------------------------------- /tests/runci/targets/Macro.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Macro.hx -------------------------------------------------------------------------------- /tests/runci/targets/Neko.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Neko.hx -------------------------------------------------------------------------------- /tests/runci/targets/Php.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Php.hx -------------------------------------------------------------------------------- /tests/runci/targets/Python.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/runci/targets/Python.hx -------------------------------------------------------------------------------- /tests/src/unit/HelperMacros.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/HelperMacros.hx -------------------------------------------------------------------------------- /tests/src/unit/Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/Test.hx -------------------------------------------------------------------------------- /tests/src/unit/TestIssues.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/TestIssues.hx -------------------------------------------------------------------------------- /tests/src/unit/TestMain.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/TestMain.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Adler32Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Adler32Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/AesCtrDrbgTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/AesCtrDrbgTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/AesTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/AesTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/BCryptTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/BCryptTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/BlowFishTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/BlowFishTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/ChaCha20Poly1305Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/ChaCha20Poly1305Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/ChaChaTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/ChaChaTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Crc32Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Crc32Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/HmacTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/HmacTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Md5Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Md5Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/ModeTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/ModeTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/PaddingTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/PaddingTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Pbkdf2Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Pbkdf2Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Poly1305Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Poly1305Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/RC4Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/RC4Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Ripemd160Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Ripemd160Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/SCryptTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/SCryptTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Salsa20Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Salsa20Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/SecureRandomTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/SecureRandomTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Sha1Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Sha1Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Sha224Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Sha224Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Sha256Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Sha256Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Sha384Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Sha384Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/Sha512Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/Sha512Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/TripleDesTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/TripleDesTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/TwoFishTest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/TwoFishTest.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/XChaCha20Poly1305Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/XChaCha20Poly1305Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/XChaCha20Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/XChaCha20Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/XSalsa20Poly1305Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/XSalsa20Poly1305Test.hx -------------------------------------------------------------------------------- /tests/src/unit/crypto/XSalsa20Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/crypto/HEAD/tests/src/unit/crypto/XSalsa20Test.hx -------------------------------------------------------------------------------- /tests/src/unit/issues/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------