OSDN Git Service

Added language bindings for Java. MT
authorLoRd_MuldeR <mulder2@gmx.de>
Mon, 24 Jun 2024 20:12:35 +0000 (22:12 +0200)
committerLoRd_MuldeR <mulder2@gmx.de>
Thu, 4 Jul 2024 21:02:49 +0000 (23:02 +0200)
commitd2644c0d04cb641a3f741b434379b31065532dff
tree4cec16338cc79f649ddc8c524f46c9ccec03ea2c
parentd7f741c28c75a4d68ec886f602fb4339ce705a5e
Added language bindings for Java.
22 files changed:
.gitignore
binding/java/.classpath [new file with mode: 0644]
binding/java/.project [new file with mode: 0644]
binding/java/build.xml [new file with mode: 0644]
binding/java/ivy.xml [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/AbstractSlunkCrypt.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/SlunkCrypt.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/SlunkCryptDecryptor.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/SlunkCryptEncryptor.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/SlunkCryptException.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/internal/SlunkCryptLibrary.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/internal/SlunkCryptParam.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/internal/types/Context.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/internal/types/SizeT.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/internal/types/UInt16.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/internal/types/UInt64.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/internal/types/UInt64ByReference.java [new file with mode: 0644]
binding/java/src/com/muldersoft/slunkcrypt/internal/utilities/Constant.java [new file with mode: 0644]
binding/java/src/overview.html [new file with mode: 0644]
binding/java/tests/src/com/muldersoft/slunkcrypt/tests/ContextTest.java [new file with mode: 0644]
binding/java/tests/src/com/muldersoft/slunkcrypt/tests/FunctionTest.java [new file with mode: 0644]
binding/java/tests/src/com/muldersoft/slunkcrypt/tests/Utilities.java [new file with mode: 0644]