summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorParagon Initiative Enterprises <security@paragonie.com>2016-02-02 20:44:37 -0500
committerScott <scott@paragonie.com>2016-02-02 20:44:37 -0500
commit8eb4800a6e5744deb15d18170b105bbdb06a80da (patch)
tree6bc8f3bb79851b9f2ad0ceeaf134a00ad2a6b9f2
parent92f2056256c8afd150b44b7dd7dcd7c4637eacea (diff)
downloadconstant_time_encoding-8eb4800a6e5744deb15d18170b105bbdb06a80da.zip
constant_time_encoding-8eb4800a6e5744deb15d18170b105bbdb06a80da.tar.gz
constant_time_encoding-8eb4800a6e5744deb15d18170b105bbdb06a80da.tar.bz2
Update readme0.1.0
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1a4f8f7..65c66f0 100644
--- a/README.md
+++ b/README.md
@@ -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