-
Notifications
You must be signed in to change notification settings - Fork 1
/
kotlincrypto.versions.toml
46 lines (38 loc) · 2.08 KB
/
kotlincrypto.versions.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[versions]
core = "0.5.3"
endians = "0.3.1"
hash = "0.5.3"
macs = "0.5.3"
secureRandom = "0.3.2"
sponges = "0.3.1"
[libraries]
# https://github.com/KotlinCrypto/core
core-common = { module = "org.kotlincrypto.core:common", version.ref = "core" }
core-digest = { module = "org.kotlincrypto.core:digest", version.ref = "core" }
core-mac = { module = "org.kotlincrypto.core:mac", version.ref = "core" }
core-xof = { module = "org.kotlincrypto.core:xof", version.ref = "core" }
# https://github.com/KotlinCrypto/endians
endians-endians = { module = "org.kotlincrypto.endians:endians", version.ref = "endians" }
# https://github.com/KotlinCrypto/hash
hash-md = { module = "org.kotlincrypto.hash:md", version.ref = "hash" }
hash-sha1 = { module = "org.kotlincrypto.hash:sha1", version.ref = "hash" }
hash-sha2 = { module = "org.kotlincrypto.hash:sha2", version.ref = "hash" }
hash-sha3 = { module = "org.kotlincrypto.hash:sha3", version.ref = "hash" }
# https://github.com/KotlinCrypto/MACs
macs-hmac-md = { module = "org.kotlincrypto.macs:hmac-md", version.ref = "macs" }
macs-hmac-sha1 = { module = "org.kotlincrypto.macs:hmac-sha1", version.ref = "macs" }
macs-hmac-sha2 = { module = "org.kotlincrypto.macs:hmac-sha2", version.ref = "macs" }
macs-hmac-sha3 = { module = "org.kotlincrypto.macs:hmac-sha3", version.ref = "macs" }
macs-kmac = { module = "org.kotlincrypto.macs:kmac", version.ref = "macs" }
# https://github.com/KotlinCrypto/secure-random
secureRandom = { module = "org.kotlincrypto:secure-random", version.ref = "secureRandom" }
# https://github.com/KotlinCrypto/sponges
sponges-keccak = { module = "org.kotlincrypto.sponges:keccak", version.ref = "sponges" }
# ----- DEPRECATED -----
# Will cease to be published next major version release and subsequently removed from the catalog
#
# Use instead:
# hash-md
# macs-hmac-md
hash-md5 = { module = "org.kotlincrypto.hash:md5", version.ref = "hash" }
macs-hmac-md5 = { module = "org.kotlincrypto.macs:hmac-md5", version.ref = "macs" }