Update README and CHANGELOG

This commit is contained in:
Ugljesa Jovanovic 2019-09-25 00:42:01 +02:00 committed by Ugljesa Jovanovic
parent d8ea3d2693
commit 8d17b85014
No known key found for this signature in database
GPG Key ID: 33A5F353387711A5
2 changed files with 10 additions and 3 deletions

View File

@ -1,6 +1,9 @@
## Descriptive changelog ## Descriptive changelog
(All dates are DD.MM.YYYY) (All dates are DD.MM.YYYY)
#### AES - 0.0.3-SNAPSHOT - 25.9.2019
- Added AES with CBC and CTR modes
#### Updatable SHA hash implementation - 0.0.2 - 21.7.2019 #### Updatable SHA hash implementation - 0.0.2 - 21.7.2019
- Added "updatable" version for SHA - Added "updatable" version for SHA
- Moved sha and blake to hash package - Moved sha and blake to hash package

View File

@ -31,12 +31,16 @@ No.
This is an experimental implementation, mostly for expanding personal understanding of cryptography. This is an experimental implementation, mostly for expanding personal understanding of cryptography.
It's not peer reviewed, not guaranteed to be bug free, and not guaranteed to be secure. It's not peer reviewed, not guaranteed to be bug free, and not guaranteed to be secure.
## Integration
## Hashing functions ## Hashing functions
* Blake2b * Blake2b
* SHA512 * SHA512
* SHA256 * SHA256
## Symmetric cipher ## Symmetric cipher (Currently only available only in 0.0.3-SNAPSHOT)
* AES * AES
* Modes: CBC, CTR * Modes: CBC, CTR
@ -46,7 +50,7 @@ More to come.
#### Gradle #### Gradle
```kotlin ```kotlin
implementation("com.ionspin.kotlin:crypto:0.0.1") implementation("com.ionspin.kotlin:crypto:0.0.2")
``` ```
#### Snapshot builds #### Snapshot builds
@ -56,7 +60,7 @@ repositories {
url = uri("https://oss.sonatype.org/content/repositories/snapshots") url = uri("https://oss.sonatype.org/content/repositories/snapshots")
} }
} }
implementation("com.ionspin.kotlin:crypto:0.0.1-SNAPSHOT") implementation("com.ionspin.kotlin:crypto:0.0.3-SNAPSHOT")
``` ```