a zip code crypto-currency system good for red ONLY

list.json 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. {
  2. "aes-128-ecb": {
  3. "cipher": "AES",
  4. "key": 128,
  5. "iv": 0,
  6. "mode": "ECB",
  7. "type": "block"
  8. },
  9. "aes-192-ecb": {
  10. "cipher": "AES",
  11. "key": 192,
  12. "iv": 0,
  13. "mode": "ECB",
  14. "type": "block"
  15. },
  16. "aes-256-ecb": {
  17. "cipher": "AES",
  18. "key": 256,
  19. "iv": 0,
  20. "mode": "ECB",
  21. "type": "block"
  22. },
  23. "aes-128-cbc": {
  24. "cipher": "AES",
  25. "key": 128,
  26. "iv": 16,
  27. "mode": "CBC",
  28. "type": "block"
  29. },
  30. "aes-192-cbc": {
  31. "cipher": "AES",
  32. "key": 192,
  33. "iv": 16,
  34. "mode": "CBC",
  35. "type": "block"
  36. },
  37. "aes-256-cbc": {
  38. "cipher": "AES",
  39. "key": 256,
  40. "iv": 16,
  41. "mode": "CBC",
  42. "type": "block"
  43. },
  44. "aes128": {
  45. "cipher": "AES",
  46. "key": 128,
  47. "iv": 16,
  48. "mode": "CBC",
  49. "type": "block"
  50. },
  51. "aes192": {
  52. "cipher": "AES",
  53. "key": 192,
  54. "iv": 16,
  55. "mode": "CBC",
  56. "type": "block"
  57. },
  58. "aes256": {
  59. "cipher": "AES",
  60. "key": 256,
  61. "iv": 16,
  62. "mode": "CBC",
  63. "type": "block"
  64. },
  65. "aes-128-cfb": {
  66. "cipher": "AES",
  67. "key": 128,
  68. "iv": 16,
  69. "mode": "CFB",
  70. "type": "stream"
  71. },
  72. "aes-192-cfb": {
  73. "cipher": "AES",
  74. "key": 192,
  75. "iv": 16,
  76. "mode": "CFB",
  77. "type": "stream"
  78. },
  79. "aes-256-cfb": {
  80. "cipher": "AES",
  81. "key": 256,
  82. "iv": 16,
  83. "mode": "CFB",
  84. "type": "stream"
  85. },
  86. "aes-128-cfb8": {
  87. "cipher": "AES",
  88. "key": 128,
  89. "iv": 16,
  90. "mode": "CFB8",
  91. "type": "stream"
  92. },
  93. "aes-192-cfb8": {
  94. "cipher": "AES",
  95. "key": 192,
  96. "iv": 16,
  97. "mode": "CFB8",
  98. "type": "stream"
  99. },
  100. "aes-256-cfb8": {
  101. "cipher": "AES",
  102. "key": 256,
  103. "iv": 16,
  104. "mode": "CFB8",
  105. "type": "stream"
  106. },
  107. "aes-128-cfb1": {
  108. "cipher": "AES",
  109. "key": 128,
  110. "iv": 16,
  111. "mode": "CFB1",
  112. "type": "stream"
  113. },
  114. "aes-192-cfb1": {
  115. "cipher": "AES",
  116. "key": 192,
  117. "iv": 16,
  118. "mode": "CFB1",
  119. "type": "stream"
  120. },
  121. "aes-256-cfb1": {
  122. "cipher": "AES",
  123. "key": 256,
  124. "iv": 16,
  125. "mode": "CFB1",
  126. "type": "stream"
  127. },
  128. "aes-128-ofb": {
  129. "cipher": "AES",
  130. "key": 128,
  131. "iv": 16,
  132. "mode": "OFB",
  133. "type": "stream"
  134. },
  135. "aes-192-ofb": {
  136. "cipher": "AES",
  137. "key": 192,
  138. "iv": 16,
  139. "mode": "OFB",
  140. "type": "stream"
  141. },
  142. "aes-256-ofb": {
  143. "cipher": "AES",
  144. "key": 256,
  145. "iv": 16,
  146. "mode": "OFB",
  147. "type": "stream"
  148. },
  149. "aes-128-ctr": {
  150. "cipher": "AES",
  151. "key": 128,
  152. "iv": 16,
  153. "mode": "CTR",
  154. "type": "stream"
  155. },
  156. "aes-192-ctr": {
  157. "cipher": "AES",
  158. "key": 192,
  159. "iv": 16,
  160. "mode": "CTR",
  161. "type": "stream"
  162. },
  163. "aes-256-ctr": {
  164. "cipher": "AES",
  165. "key": 256,
  166. "iv": 16,
  167. "mode": "CTR",
  168. "type": "stream"
  169. },
  170. "aes-128-gcm": {
  171. "cipher": "AES",
  172. "key": 128,
  173. "iv": 12,
  174. "mode": "GCM",
  175. "type": "auth"
  176. },
  177. "aes-192-gcm": {
  178. "cipher": "AES",
  179. "key": 192,
  180. "iv": 12,
  181. "mode": "GCM",
  182. "type": "auth"
  183. },
  184. "aes-256-gcm": {
  185. "cipher": "AES",
  186. "key": 256,
  187. "iv": 12,
  188. "mode": "GCM",
  189. "type": "auth"
  190. }
  191. }