Kotlin multi-platform cryptographic utility library.
This library provides independent modules that handle specific cryptographic tasks. For instance,
the krypt-csprng module provides a SecureRandom
implementation which is a cryptographically strong
psuedo-random number generator. Each module contains a README
file with more information on usage.
The library is provided through Repsy.io. Checkout the releases page to get the latest version.
repositories {
maven { url = uri("https://repo.repsy.io/mvn/chrynan/public") }
}
implementation("com.chrynan.krypt:krypt-core:$VERSION")
implementation("com.chrynan.krypt:krypt-csprng:$VERSION")
implementation("com.chrynan.krypt:krypt-encoding:$VERSION")
implementation("com.chrynan.krypt:krypt-hash:$VERSION")
implementation("com.chrynan.krypt:krypt-hash-argon:$VERSION")
implementation("com.chrynan.krypt:krypt-hash-sha:$VERSION")
implementation("com.chrynan.krypt:krypt-srp:$VERSION")
This project is in early development stages and is not yet considered production ready.
More detailed documentation is available in the docs folder. The entry point to the documentation can be found here.
For security vulnerabilities, concerns, or issues, please responsibly disclose the information either by opening a public GitHub Issue or reaching out to the project owner.
Copyright 2022 chRyNaN
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.