Skip to content

Commit

Permalink
Added jitpack dependency hint.
Browse files Browse the repository at this point in the history
  • Loading branch information
erickok committed Mar 13, 2018
1 parent d760cda commit 7c17e54
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# okio-extensions
A set of Okio extensions to work with various data formats.

```groovy
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
compile 'com.github.erickok:okio-extensions:v1.0'
}
```

Written in Kotlin, works on plain Java (JVM) and Android.

## `Base64Source` and `Base64Sink`
Expand Down Expand Up @@ -59,6 +73,8 @@ Encrypt and decrypt data in a streaming fashion using the Java platform's [Ciphe

Think javax.crypto's standard [CipherInputStream and CipherOutputStream](https://docs.oracle.com/javase/7/docs/api/javax/crypto/package-summary.html) but for Okio `Source`s and `Sink`s.

`CipherSource` and `CipherSink` are tested and used in production with AES ciphers, but should work (without warrenty) with any Java-supported Cipher algorithm.

## License and credits
Designed and developed by [Eric Kok](mailto:[email protected]) of [2312 development](http://2312.nl).

Expand Down

0 comments on commit 7c17e54

Please sign in to comment.