diff options
author | Paragon Initiative Enterprises <security@paragonie.com> | 2016-02-02 20:44:37 -0500 |
---|---|---|
committer | Scott <scott@paragonie.com> | 2016-02-02 20:44:37 -0500 |
commit | 8eb4800a6e5744deb15d18170b105bbdb06a80da (patch) | |
tree | 6bc8f3bb79851b9f2ad0ceeaf134a00ad2a6b9f2 | |
parent | 92f2056256c8afd150b44b7dd7dcd7c4637eacea (diff) | |
download | constant_time_encoding-8eb4800a6e5744deb15d18170b105bbdb06a80da.zip constant_time_encoding-8eb4800a6e5744deb15d18170b105bbdb06a80da.tar.gz constant_time_encoding-8eb4800a6e5744deb15d18170b105bbdb06a80da.tar.bz2 |
Update readme0.1.0
-rw-r--r-- | README.md | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -28,6 +28,12 @@ use \ParagonIE\ConstantTime\Encoding; $data = random_bytes(32); echo Encoding::base64Encode($data), "\n"; +echo Encoding::hexEncode($data), "\n"; ``` -Example output: `hKBHmZuDM9N99tXDoSNrZVoQSpVChxKXjG85cuOuSYI=`
\ No newline at end of file +Example output: + +``` +hKBHmZuDM9N99tXDoSNrZVoQSpVChxKXjG85cuOuSYI= +84a047999b8333d37df6d5c3a1236b655a104a95428712978c6f3972e3ae4982 +```
\ No newline at end of file |