diff options
author | Scott <scott@paragonie.com> | 2016-04-08 10:23:59 -0400 |
---|---|---|
committer | Scott <scott@paragonie.com> | 2016-04-08 10:23:59 -0400 |
commit | da36633e5529862ebdd661310c77ea520727e04f (patch) | |
tree | 0f42909550029a0e3c9acceee95e08b872c29d45 | |
parent | 5f792b8d90c966da6e4ffdee6752cb718f6e7e96 (diff) | |
download | constant_time_encoding-da36633e5529862ebdd661310c77ea520727e04f.zip constant_time_encoding-da36633e5529862ebdd661310c77ea520727e04f.tar.gz constant_time_encoding-da36633e5529862ebdd661310c77ea520727e04f.tar.bz2 |
Readme fix. Tagging v0.6.0v0.6.0
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -53,13 +53,16 @@ required class like so: ```php use \ParagonIE\ConstantTime\Base64; +use \ParagonIE\ConstantTime\Base32; $data = random_bytes(32); -echo Base64::Encode($data), "\n"; +echo Base64::encode($data), "\n"; +echo Base32::encode($data), "\n"; ``` Example output: ``` 1VilPkeVqirlPifk5scbzcTTbMT2clp+Zkyv9VFFasE= +2vmkkpshswvcvzj6e7sonry3zxcng3ge6zzfu7tgjsx7kukfnlaq==== ```
\ No newline at end of file |