Skip to content

Commit ec3df65

Browse files
Update README.md
1 parent 02f45a7 commit ec3df65

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A Pure PHP (without any external PHP-extension) Implementation of BLAKE-256, GRO
1111

1212
1. require library:
1313

14-
`"require": { "shift196/lib-akash" }`
14+
`"require": { "shift196/lib-akash": "1.0.*" }`
1515

1616
**Usage:**
1717

@@ -23,10 +23,16 @@ A Pure PHP (without any external PHP-extension) Implementation of BLAKE-256, GRO
2323

2424
`Hasher::registerAlgo('MYHASH', new MyHashImpl());`
2525

26-
`MyHashImpl` should implement IHashFunction interface.
26+
`MyHashImpl` should implement `IHashFunction` interface.
2727

2828
2. Make hash of hex-encoded data:
2929

3030
`$algo = 'BLAKE256 or GROESTL256 or JH256 or SKEIN256 or KECCAK256';`
3131

3232
`$hashHex = Hasher::doHash($algo, InputDataSupplier::forHex($dataHex))->hex(TRUE);`
33+
34+
!! Don't use internal classes from `Shift196\AKashLib\Util` it can be changed without any notifications !!
35+
36+
**TODO**:
37+
38+
-use PHPUnit for testing

0 commit comments

Comments
 (0)