]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/hexdigit_tab.c
modifying some nessie test suits (mac & hash) to use less RAM
[avr-crypto-lib.git] / test_src / hexdigit_tab.c
index 8e81d08a757a00cafd3c9d5b01c822618b665caf..874109ce8827d2cb4515ec10f3d6d888b424f409 100644 (file)
@@ -30,6 +30,19 @@ char hexdigit_tab_P[] PROGMEM =
                                '8','9','A','B',
                                'C','D','E','F'};
 
+char hexdigit_tab_uc_P[] PROGMEM = 
+                              {'0','1','2','3',
+                               '4','5','6','7',
+                               '8','9','A','B',
+                               'C','D','E','F'};
+
+
+char hexdigit_tab_lc_P[] PROGMEM = 
+                              {'0','1','2','3',
+                               '4','5','6','7',
+                               '8','9','a','b',
+                               'c','d','e','f'};
+