aboutsummaryrefslogtreecommitdiffstats
path: root/hexencodetest.json
diff options
context:
space:
mode:
Diffstat (limited to 'hexencodetest.json')
-rw-r--r--hexencodetest.json68
1 files changed, 34 insertions, 34 deletions
diff --git a/hexencodetest.json b/hexencodetest.json
index a6d18834c..6fe7891c3 100644
--- a/hexencodetest.json
+++ b/hexencodetest.json
@@ -1,34 +1,34 @@
-[
- [
- [ 1, 2, 3, 4, 5 ],
- "112345"
- ],
- [
- [ 0, 1, 2, 3, 4, 5 ],
- "00012345"
- ],
- [
- [ 6, 4, 6, 15, 6, 7, 6, 5, 16 ],
- "20646f6765"
- ],
- [
- [ 7, 6, 5, 16 ],
- "3765"
- ],
- [
- [ 16 ],
- "20"
- ],
- [
- [ 0, 16 ],
- "30"
- ],
- [
- [ 15, 1, 12, 11, 8, 16 ],
- "3f1cb8"
- ],
- [
- [ 0, 15, 1, 12, 11, 8, 16 ],
- "200f1cb8"
- ]
-]
+{
+ "nz,odd": {
+ "seq": [ 1, 2, 3, 4, 5 ],
+ "return": "112345"
+ },
+ "z,even": {
+ "seq": [ 0, 1, 2, 3, 4, 5 ],
+ "return": "00012345"
+ },
+ "long": {
+ "seq": [ 6, 4, 6, 15, 6, 7, 6, 5, 16 ],
+ "return": "20646f6765"
+ },
+ "short": {
+ "seq": [ 7, 6, 5, 16 ],
+ "return": "3765"
+ },
+ "nz,one": {
+ "seq": [ 16 ],
+ "return": "20"
+ },
+ "z,two": {
+ "seq": [ 0, 16 ],
+ "return": "30"
+ },
+ "nz,even": {
+ "seq": [ 15, 1, 12, 11, 8, 16 ],
+ "return": "3f1cb8"
+ },
+ "z,odd": {
+ "seq": [ 0, 15, 1, 12, 11, 8, 16 ],
+ "return": "200f1cb8"
+ }
+}