-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
JPMS
support via Multi-Release Jar (#59)
- Loading branch information
Showing
10 changed files
with
62 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module org.kotlincrypto.hash.md { | ||
requires kotlin.stdlib; | ||
requires org.kotlincrypto.core; | ||
requires org.kotlincrypto.core.digest; | ||
|
||
exports org.kotlincrypto.hash.md; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@SuppressWarnings("JavaModuleNaming") | ||
module org.kotlincrypto.hash.sha1 { | ||
requires kotlin.stdlib; | ||
requires org.kotlincrypto.core; | ||
requires org.kotlincrypto.core.digest; | ||
|
||
exports org.kotlincrypto.hash.sha1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@SuppressWarnings("JavaModuleNaming") | ||
module org.kotlincrypto.hash.sha2 { | ||
requires kotlin.stdlib; | ||
requires org.kotlincrypto.core; | ||
requires org.kotlincrypto.core.digest; | ||
|
||
exports org.kotlincrypto.hash.sha2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@SuppressWarnings("JavaModuleNaming") | ||
module org.kotlincrypto.hash.sha3 { | ||
requires kotlin.stdlib; | ||
requires org.kotlincrypto.core; | ||
requires org.kotlincrypto.core.digest; | ||
requires org.kotlincrypto.core.xof; | ||
requires org.kotlincrypto.endians; | ||
requires org.kotlincrypto.sponges.keccak; | ||
|
||
exports org.kotlincrypto.hash.sha3; | ||
} |