diff --git a/Home.md b/Home.md index 118181b..d3e00ac 100644 --- a/Home.md +++ b/Home.md @@ -33,16 +33,3 @@ dependencies { implementation("com.infendro:hash:1.3.2") } ``` - -## Usage - -```kotlin -import com.infendro.hash.sha2.`SHA-256` - -fun main() { - // hash some value using SHA-256 - val value = "Hello World!" - .encodeToByteArray().asUByteArray() - val hash = `SHA-256`.hash(value) -} -```