https://github.com/chrynan/krypt
Kotlin multi-platform cryptographic utility library.
https://github.com/chrynan/krypt
argon2 base64 cryptography csprng encryption-decryption hash hashing kotlin kotlin-multiplatform kotlin-multiplatform-library password-hash sha256 srp
Last synced: 3 months ago
JSON representation
Kotlin multi-platform cryptographic utility library.
- Host: GitHub
- URL: https://github.com/chrynan/krypt
- Owner: chRyNaN
- License: apache-2.0
- Created: 2021-09-01T22:00:03.000Z (about 4 years ago)
- Default Branch: develop
- Last Pushed: 2023-08-05T15:32:41.000Z (about 2 years ago)
- Last Synced: 2023-08-05T16:31:21.371Z (about 2 years ago)
- Topics: argon2, base64, cryptography, csprng, encryption-decryption, hash, hashing, kotlin, kotlin-multiplatform, kotlin-multiplatform-library, password-hash, sha256, srp
- Language: Kotlin
- Homepage:
- Size: 492 KB
- Stars: 16
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# krypt
Kotlin multi-platform cryptographic utility library.
## Usage
This library provides independent modules that handle specific cryptographic tasks. For instance,
the [krypt-csprng](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.## Building
The library is provided through [Repsy.io](https://repsy.io/). Checkout
the [releases page](https://github.com/chRyNaN/krypt/releases) to get the latest version.### Repository
```kotlin
repositories {
maven { url = uri("https://repo.repsy.io/mvn/chrynan/public") }
}
```### Dependencies
#### ore:
```kotlin
implementation("com.chrynan.krypt:krypt-core:$VERSION")
```#### csprng:
```kotlin
implementation("com.chrynan.krypt:krypt-csprng:$VERSION")
```#### encoding:
```kotlin
implementation("com.chrynan.krypt:krypt-encoding:$VERSION")
```#### hash:
```kotlin
implementation("com.chrynan.krypt:krypt-hash:$VERSION")
```#### hash-argon:
```kotlin
implementation("com.chrynan.krypt:krypt-hash-argon:$VERSION")
```#### hash-sha:
```kotlin
implementation("com.chrynan.krypt:krypt-hash-sha:$VERSION")
```#### srp:
```kotlin
implementation("com.chrynan.krypt:krypt-srp:$VERSION")
```## Status
This project is in early development stages and is not yet considered production ready.
## Documentation
More detailed documentation is available in the [docs](docs) folder. The entry point to the documentation can be
found [here](docs/index.md).## Security
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.## License
```
Copyright 2022 chRyNaNLicensed 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 athttp://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.
```