-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkotlincrypto.versions.toml
56 lines (47 loc) · 2.51 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
47
48
49
50
51
52
53
54
55
56
[versions]
bitops = "0.1.1"
core = "0.6.0"
hash = "0.6.0"
macs = "0.6.0"
secureRandom = "0.3.2"
sponges = "0.3.4"
# ----- DEPRECATED -----
# Will cease to be published next major version release and subsequently removed from the catalog
#
# Use instead:
# bitops-endian
endians = "0.3.2"
[libraries]
# https://github.com/KotlinCrypto/bitops
bitops-bits = { module = "org.kotlincrypto.bitops:bits", version.ref = "bitops" }
bitops-endian = { module = "org.kotlincrypto.bitops:endian", version.ref = "bitops" }
# https://github.com/KotlinCrypto/core
core-core = { module = "org.kotlincrypto.core:core", 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/hash
hash-blake2 = { module = "org.kotlincrypto.hash:blake2", version.ref = "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-blake2 = { module = "org.kotlincrypto.macs:blake2", version.ref = "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:
# core-core
# bitops-endian
core-common = { module = "org.kotlincrypto.core:core", version.ref = "core" }
endians-endians = { module = "org.kotlincrypto.endians:endians", version.ref = "endians" }