kotlinx-crypto
0.0.4indexedOffers essential cryptographic functions and primitives, including AES, Blake2, CRC32, HMAC, Keccak, PBKDF2, Poly1305, Salsa20, SHA1, and SHA2 implementations.
16
Stars
3
Used by
dependents
—
Health
/ 100
Offers essential cryptographic functions and primitives, including AES, Blake2, CRC32, HMAC, Keccak, PBKDF2, Poly1305, Salsa20, SHA1, and SHA2 implementations.
Surfaced from shared tags and platforms — no rankings paid for.
repositories {
mavenCentral()
}
val kotlinxCryptoVersion = "0.0.5"
dependencies {
implementation("io.github.andreypfau:kotlinx-crypto-aes:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-blake2:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-crc32:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-hmac:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-keccak:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-pbkdf2:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-poly1305:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-salsa20:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-sha1:$kotlinxCryptoVersion")
implementation("io.github.andreypfau:kotlinx-crypto-sha2:$kotlinxCryptoVersion")
}