cryptopp 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (195) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +4 -0
  3. data/Gemfile +14 -0
  4. data/Guardfile +17 -0
  5. data/MIT-LICENSE +1 -1
  6. data/Rakefile +20 -27
  7. data/VERSION +1 -0
  8. data/cryptopp.gemspec +7 -182
  9. data/ext/Rakefile +2 -2
  10. data/ext/ciphers.cpp +619 -619
  11. data/ext/cryptopp.cpp +220 -217
  12. data/ext/cryptopp_ruby_api.h +7 -7
  13. data/ext/defs/hashes.def +16 -0
  14. data/ext/defs/hmacs.def +16 -0
  15. data/ext/digests.cpp +635 -601
  16. data/ext/extconf.rb +61 -19
  17. data/ext/j3way.cpp +5 -5
  18. data/ext/j3way.h +6 -6
  19. data/ext/jadler32.h +6 -6
  20. data/ext/jaes.cpp +5 -5
  21. data/ext/jaes.h +6 -6
  22. data/ext/jarc4.cpp +5 -5
  23. data/ext/jarc4.h +6 -6
  24. data/ext/jbase.cpp +94 -94
  25. data/ext/jbase.h +49 -55
  26. data/ext/jbasiccipherinfo.h +23 -23
  27. data/ext/jblowfish.cpp +5 -5
  28. data/ext/jblowfish.h +6 -6
  29. data/ext/jcamellia.cpp +5 -7
  30. data/ext/jcamellia.h +6 -8
  31. data/ext/jcast128.cpp +5 -5
  32. data/ext/jcast128.h +6 -6
  33. data/ext/jcast256.cpp +5 -5
  34. data/ext/jcast256.h +6 -6
  35. data/ext/jcipher.cpp +62 -62
  36. data/ext/jcipher.h +24 -24
  37. data/ext/jcipher_t.h +383 -383
  38. data/ext/jconfig.h +29 -46
  39. data/ext/jconstants.h +120 -122
  40. data/ext/jcrc32.h +6 -6
  41. data/ext/jdes.cpp +5 -5
  42. data/ext/jdes.h +6 -6
  43. data/ext/jdes_ede2.cpp +5 -5
  44. data/ext/jdes_ede2.h +6 -6
  45. data/ext/jdes_ede3.cpp +5 -5
  46. data/ext/jdes_ede3.h +6 -6
  47. data/ext/jdes_xex3.cpp +5 -5
  48. data/ext/jdes_xex3.h +6 -6
  49. data/ext/jdiamond2.cpp +5 -5
  50. data/ext/jdiamond2.h +6 -6
  51. data/ext/jdiamond2lite.cpp +5 -5
  52. data/ext/jdiamond2lite.h +6 -6
  53. data/ext/jexception.h +5 -5
  54. data/ext/jgost.cpp +5 -5
  55. data/ext/jgost.h +6 -6
  56. data/ext/jhash.cpp +51 -51
  57. data/ext/jhash.h +22 -27
  58. data/ext/jhash_t.h +59 -59
  59. data/ext/jhaval.h +15 -15
  60. data/ext/jhelpers.cpp +54 -54
  61. data/ext/jhelpers.h +3 -3
  62. data/ext/jhmac.cpp +20 -20
  63. data/ext/jhmac.h +15 -15
  64. data/ext/jhmac_t.h +40 -72
  65. data/ext/jidea.cpp +5 -5
  66. data/ext/jidea.h +6 -6
  67. data/ext/jmarc4.cpp +5 -5
  68. data/ext/jmarc4.h +6 -6
  69. data/ext/jmars.cpp +5 -5
  70. data/ext/jmars.h +6 -6
  71. data/ext/jmd2.h +9 -9
  72. data/ext/jmd4.h +9 -9
  73. data/ext/jmd5.h +9 -9
  74. data/ext/jpanamacipher.cpp +7 -7
  75. data/ext/jpanamacipher.h +9 -9
  76. data/ext/jpanamahash.h +9 -9
  77. data/ext/jrc2.cpp +15 -15
  78. data/ext/jrc2.h +11 -11
  79. data/ext/jrc5.cpp +5 -5
  80. data/ext/jrc5.h +6 -6
  81. data/ext/jrc6.cpp +5 -5
  82. data/ext/jrc6.h +6 -6
  83. data/ext/jripemd160.h +28 -28
  84. data/ext/jsafer.cpp +7 -7
  85. data/ext/jsafer.h +9 -9
  86. data/ext/jseal.cpp +7 -7
  87. data/ext/jseal.h +9 -9
  88. data/ext/jserpent.cpp +5 -5
  89. data/ext/jserpent.h +6 -6
  90. data/ext/jsha.h +38 -37
  91. data/ext/jsha3.h +130 -0
  92. data/ext/jsha3_blocksizes.h +73 -0
  93. data/ext/jshacal2.cpp +5 -5
  94. data/ext/jshacal2.h +6 -6
  95. data/ext/jshark.cpp +5 -7
  96. data/ext/jshark.h +6 -8
  97. data/ext/jsink.cpp +57 -57
  98. data/ext/jsink.h +127 -123
  99. data/ext/jskipjack.cpp +5 -5
  100. data/ext/jskipjack.h +6 -6
  101. data/ext/jsquare.cpp +5 -5
  102. data/ext/jsquare.h +6 -6
  103. data/ext/jstream.cpp +3 -3
  104. data/ext/jstream.h +3 -3
  105. data/ext/jstream_t.h +74 -126
  106. data/ext/jtea.cpp +5 -5
  107. data/ext/jtea.h +6 -6
  108. data/ext/jtiger.h +9 -11
  109. data/ext/jtwofish.cpp +5 -5
  110. data/ext/jtwofish.h +6 -6
  111. data/ext/jwhirlpool.h +9 -11
  112. data/ext/utils.cpp +3 -3
  113. data/extras/parser_c.rb +102 -102
  114. data/test/ciphers_test.rb +24 -30
  115. data/test/data/ciphers/3desval.yml +13 -0
  116. data/test/data/ciphers/3wayval.yml +17 -0
  117. data/test/data/ciphers/arc4.yml +22 -0
  118. data/test/data/ciphers/blowfish.yml +9 -0
  119. data/test/data/ciphers/camellia.yml +21 -0
  120. data/test/data/ciphers/cast128v.yml +13 -0
  121. data/test/data/ciphers/cast256v.yml +13 -0
  122. data/test/data/ciphers/descert.yml +723 -0
  123. data/test/data/ciphers/diamond.yml +31 -0
  124. data/test/data/ciphers/gostval.yml +33 -0
  125. data/test/data/ciphers/ideaval.yml +45 -0
  126. data/test/data/ciphers/marsval.yml +37 -0
  127. data/test/data/ciphers/panamac.yml +11 -0
  128. data/test/data/ciphers/rc2val.yml +49 -0
  129. data/test/data/ciphers/rc5val.yml +26 -0
  130. data/test/data/ciphers/rc6val.yml +25 -0
  131. data/test/data/ciphers/rijndael.yml +37 -0
  132. data/test/data/ciphers/saferval.yml +77 -0
  133. data/test/data/ciphers/seal.yml +6 -0
  134. data/test/data/ciphers/serpentv.yml +37 -0
  135. data/test/data/ciphers/shacal2.yml +21 -0
  136. data/test/data/ciphers/sharkval.yml +29 -0
  137. data/test/data/ciphers/skipjack.yml +5 -0
  138. data/test/data/ciphers/squareva.yml +33 -0
  139. data/test/data/ciphers/twofishv.yml +37 -0
  140. data/test/data/digests/adler32.yml +19 -0
  141. data/test/data/digests/crc32.yml +25 -0
  142. data/test/data/digests/haval.yml +7 -0
  143. data/test/data/digests/havalcer.yml +1 -0
  144. data/test/data/digests/md2.yml +22 -0
  145. data/test/data/digests/md4.yml +22 -0
  146. data/test/data/digests/md5.yml +22 -0
  147. data/test/data/digests/panamah.yml +13 -0
  148. data/test/data/digests/ripemd.yml +97 -0
  149. data/test/data/digests/sha.yml +25 -0
  150. data/test/data/digests/sha3.yml +23 -0
  151. data/test/data/digests/tiger.yml +30 -0
  152. data/test/data/digests/whirlpool.yml +25 -0
  153. data/test/data/hmacs/hmac.yml +14 -0
  154. data/test/digests_test.rb +17 -23
  155. data/test/hmacs_test.rb +25 -31
  156. data/test/test_helper.rb +31 -37
  157. metadata +70 -82
  158. data/test/data/ciphers/3desval.dat +0 -7
  159. data/test/data/ciphers/3wayval.dat +0 -6
  160. data/test/data/ciphers/arc4.dat +0 -8
  161. data/test/data/ciphers/blowfish.dat +0 -5
  162. data/test/data/ciphers/camellia.dat +0 -7
  163. data/test/data/ciphers/cast128v.dat +0 -5
  164. data/test/data/ciphers/cast256v.dat +0 -5
  165. data/test/data/ciphers/descert.dat +0 -198
  166. data/test/data/ciphers/diamond.dat +0 -9
  167. data/test/data/ciphers/gostval.dat +0 -10
  168. data/test/data/ciphers/ideaval.dat +0 -13
  169. data/test/data/ciphers/marsval.dat +0 -11
  170. data/test/data/ciphers/panamac.dat +0 -7
  171. data/test/data/ciphers/rc2val.dat +0 -10
  172. data/test/data/ciphers/rc5val.dat +0 -7
  173. data/test/data/ciphers/rc6val.dat +0 -8
  174. data/test/data/ciphers/rijndael.dat +0 -11
  175. data/test/data/ciphers/saferval.dat +0 -27
  176. data/test/data/ciphers/seal.dat +0 -3
  177. data/test/data/ciphers/serpentv.dat +0 -11
  178. data/test/data/ciphers/shacal2.dat +0 -7
  179. data/test/data/ciphers/sharkval.dat +0 -9
  180. data/test/data/ciphers/skipjack.dat +0 -3
  181. data/test/data/ciphers/squareva.dat +0 -10
  182. data/test/data/ciphers/twofishv.dat +0 -11
  183. data/test/data/digests/adler32.dat +0 -8
  184. data/test/data/digests/crc32.dat +0 -10
  185. data/test/data/digests/haval.dat +0 -4
  186. data/test/data/digests/havalcer.dat +0 -23
  187. data/test/data/digests/md2.dat +0 -9
  188. data/test/data/digests/md4.dat +0 -9
  189. data/test/data/digests/md5.dat +0 -9
  190. data/test/data/digests/panamah.dat +0 -8
  191. data/test/data/digests/ripemd.dat +0 -43
  192. data/test/data/digests/sha.dat +0 -19
  193. data/test/data/digests/tiger.dat +0 -11
  194. data/test/data/digests/whirlpool.dat +0 -13
  195. data/test/data/hmacs/hmac.dat +0 -6
@@ -0,0 +1,9 @@
1
+ ---
2
+ - :algorithm: :blowfish
3
+ :key: abcdefghijklmnopqrstuvwxyz
4
+ :plaintext: BLOWFISH
5
+ :ciphertext_hex: 324ed0fef413a203
6
+ - :algorithm: :blowfish
7
+ :key: Who is John Galt?
8
+ :plaintext_hex: fedcba9876543210
9
+ :ciphertext_hex: cc91732b8022f684
@@ -0,0 +1,21 @@
1
+ ---
2
+ - :algorithm: :camellia
3
+ :key_hex: '80000000000000000000000000000000'
4
+ :plaintext_hex: '00000000000000000000000000000000'
5
+ :ciphertext_hex: 6c227f749319a3aa7da235a9bba05a2c
6
+ - :algorithm: :camellia
7
+ :key_hex: '00000000000000000000000000000000'
8
+ :plaintext_hex: '80000000000000000000000000000000'
9
+ :ciphertext_hex: 07923a39eb0a817d1c4d87bdb82d1f1c
10
+ - :algorithm: :camellia
11
+ :key_hex: '00000000000000000000000000000000'
12
+ :plaintext_hex: '00000000000000000000000000000000'
13
+ :ciphertext_hex: 3d028025b156327c17f762c1f2cbca71
14
+ - :algorithm: :camellia
15
+ :key_hex: a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5
16
+ :plaintext_hex: a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5
17
+ :ciphertext_hex: 1f55093c234648c5c9c781e8c9fd42c4
18
+ - :algorithm: :camellia
19
+ :key_hex: fefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefe
20
+ :plaintext_hex: fefefefefefefefefefefefefefefefe
21
+ :ciphertext_hex: acdbb0f5a00e3cf63a89d9c09b44a058
@@ -0,0 +1,13 @@
1
+ ---
2
+ - :algorithm: :cast128
3
+ :key_hex: 0123456712345678234567893456789a
4
+ :plaintext_hex: 0123456789abcdef
5
+ :ciphertext_hex: 238b4fe5847e44b2
6
+ - :algorithm: :cast128
7
+ :key_hex: 01234567123456782345
8
+ :plaintext_hex: 0123456789abcdef
9
+ :ciphertext_hex: eb6a711a2c02271b
10
+ - :algorithm: :cast128
11
+ :key_hex: '0123456712'
12
+ :plaintext_hex: 0123456789abcdef
13
+ :ciphertext_hex: 7ac816d16e9b302e
@@ -0,0 +1,13 @@
1
+ ---
2
+ - :algorithm: :cast256
3
+ :key_hex: 2342bb9efa38542c0af75647f29f615d
4
+ :plaintext_hex: '00000000000000000000000000000000'
5
+ :ciphertext_hex: c842a08972b43d20836c91d1b7530f6b
6
+ - :algorithm: :cast256
7
+ :key_hex: 2342bb9efa38542cbed0ac83940ac298bac77a7717942863
8
+ :plaintext_hex: '00000000000000000000000000000000'
9
+ :ciphertext_hex: 1b386c0210dcadcbdd0e41aa08a7a7e8
10
+ - :algorithm: :cast256
11
+ :key_hex: 2342bb9efa38542cbed0ac83940ac2988d7c47ce264908461cc1b5137ae6b604
12
+ :plaintext_hex: '00000000000000000000000000000000'
13
+ :ciphertext_hex: 4f6a2038286897b9c9870136553317fa
@@ -0,0 +1,723 @@
1
+ ---
2
+ - :algorithm: :des
3
+ :key_hex: '0101010101010101'
4
+ :plaintext_hex: 95f8a5e5dd31d900
5
+ :ciphertext_hex: '8000000000000000'
6
+ - :algorithm: :des
7
+ :key_hex: '0101010101010101'
8
+ :plaintext_hex: dd7f121ca5015619
9
+ :ciphertext_hex: '4000000000000000'
10
+ - :algorithm: :des
11
+ :key_hex: '0101010101010101'
12
+ :plaintext_hex: 2e8653104f3834ea
13
+ :ciphertext_hex: '2000000000000000'
14
+ - :algorithm: :des
15
+ :key_hex: '0101010101010101'
16
+ :plaintext_hex: 4bd388ff6cd81d4f
17
+ :ciphertext_hex: '1000000000000000'
18
+ - :algorithm: :des
19
+ :key_hex: '0101010101010101'
20
+ :plaintext_hex: 20b9e767b2fb1456
21
+ :ciphertext_hex: 0800000000000000
22
+ - :algorithm: :des
23
+ :key_hex: '0101010101010101'
24
+ :plaintext_hex: 55579380d77138ef
25
+ :ciphertext_hex: '0400000000000000'
26
+ - :algorithm: :des
27
+ :key_hex: '0101010101010101'
28
+ :plaintext_hex: 6cc5defaaf04512f
29
+ :ciphertext_hex: '0200000000000000'
30
+ - :algorithm: :des
31
+ :key_hex: '0101010101010101'
32
+ :plaintext_hex: 0d9f279ba5d87260
33
+ :ciphertext_hex: '0100000000000000'
34
+ - :algorithm: :des
35
+ :key_hex: '0101010101010101'
36
+ :plaintext_hex: d9031b0271bd5a0a
37
+ :ciphertext_hex: 0080000000000000
38
+ - :algorithm: :des
39
+ :key_hex: '0101010101010101'
40
+ :plaintext_hex: 424250b37c3dd951
41
+ :ciphertext_hex: '0040000000000000'
42
+ - :algorithm: :des
43
+ :key_hex: '0101010101010101'
44
+ :plaintext_hex: b8061b7ecd9a21e5
45
+ :ciphertext_hex: '0020000000000000'
46
+ - :algorithm: :des
47
+ :key_hex: '0101010101010101'
48
+ :plaintext_hex: f15d0f286b65bd28
49
+ :ciphertext_hex: '0010000000000000'
50
+ - :algorithm: :des
51
+ :key_hex: '0101010101010101'
52
+ :plaintext_hex: add0cc8d6e5deba1
53
+ :ciphertext_hex: 0008000000000000
54
+ - :algorithm: :des
55
+ :key_hex: '0101010101010101'
56
+ :plaintext_hex: e6d5f82752ad63d1
57
+ :ciphertext_hex: '0004000000000000'
58
+ - :algorithm: :des
59
+ :key_hex: '0101010101010101'
60
+ :plaintext_hex: ecbfe3bd3f591a5e
61
+ :ciphertext_hex: '0002000000000000'
62
+ - :algorithm: :des
63
+ :key_hex: '0101010101010101'
64
+ :plaintext_hex: f356834379d165cd
65
+ :ciphertext_hex: '0001000000000000'
66
+ - :algorithm: :des
67
+ :key_hex: '0101010101010101'
68
+ :plaintext_hex: 2b9f982f20037fa9
69
+ :ciphertext_hex: 0000800000000000
70
+ - :algorithm: :des
71
+ :key_hex: '0101010101010101'
72
+ :plaintext_hex: 889de068a16f0be6
73
+ :ciphertext_hex: '0000400000000000'
74
+ - :algorithm: :des
75
+ :key_hex: '0101010101010101'
76
+ :plaintext_hex: e19e275d846a1298
77
+ :ciphertext_hex: '0000200000000000'
78
+ - :algorithm: :des
79
+ :key_hex: '0101010101010101'
80
+ :plaintext_hex: 329a8ed523d71aec
81
+ :ciphertext_hex: '0000100000000000'
82
+ - :algorithm: :des
83
+ :key_hex: '0101010101010101'
84
+ :plaintext_hex: e7fce22557d23c97
85
+ :ciphertext_hex: 0000080000000000
86
+ - :algorithm: :des
87
+ :key_hex: '0101010101010101'
88
+ :plaintext_hex: 12a9f5817ff2d65d
89
+ :ciphertext_hex: '0000040000000000'
90
+ - :algorithm: :des
91
+ :key_hex: '0101010101010101'
92
+ :plaintext_hex: a484c3ad38dc9c19
93
+ :ciphertext_hex: '0000020000000000'
94
+ - :algorithm: :des
95
+ :key_hex: '0101010101010101'
96
+ :plaintext_hex: fbe00a8a1ef8ad72
97
+ :ciphertext_hex: '0000010000000000'
98
+ - :algorithm: :des
99
+ :key_hex: '0101010101010101'
100
+ :plaintext_hex: 750d079407521363
101
+ :ciphertext_hex: 0000008000000000
102
+ - :algorithm: :des
103
+ :key_hex: '0101010101010101'
104
+ :plaintext_hex: 64feed9c724c2faf
105
+ :ciphertext_hex: '0000004000000000'
106
+ - :algorithm: :des
107
+ :key_hex: '0101010101010101'
108
+ :plaintext_hex: f02b263b328e2b60
109
+ :ciphertext_hex: '0000002000000000'
110
+ - :algorithm: :des
111
+ :key_hex: '0101010101010101'
112
+ :plaintext_hex: 9d64555a9a10b852
113
+ :ciphertext_hex: '0000001000000000'
114
+ - :algorithm: :des
115
+ :key_hex: '0101010101010101'
116
+ :plaintext_hex: d106ff0bed5255d7
117
+ :ciphertext_hex: 0000000800000000
118
+ - :algorithm: :des
119
+ :key_hex: '0101010101010101'
120
+ :plaintext_hex: e1652c6b138c64a5
121
+ :ciphertext_hex: '0000000400000000'
122
+ - :algorithm: :des
123
+ :key_hex: '0101010101010101'
124
+ :plaintext_hex: e428581186ec8f46
125
+ :ciphertext_hex: '0000000200000000'
126
+ - :algorithm: :des
127
+ :key_hex: '0101010101010101'
128
+ :plaintext_hex: aeb5f5ede22d1a36
129
+ :ciphertext_hex: '0000000100000000'
130
+ - :algorithm: :des
131
+ :key_hex: '0101010101010101'
132
+ :plaintext_hex: e943d7568aec0c5c
133
+ :ciphertext_hex: 0000000080000000
134
+ - :algorithm: :des
135
+ :key_hex: '0101010101010101'
136
+ :plaintext_hex: df98c8276f54b04b
137
+ :ciphertext_hex: '0000000040000000'
138
+ - :algorithm: :des
139
+ :key_hex: '0101010101010101'
140
+ :plaintext_hex: b160e4680f6c696f
141
+ :ciphertext_hex: '0000000020000000'
142
+ - :algorithm: :des
143
+ :key_hex: '0101010101010101'
144
+ :plaintext_hex: fa0752b07d9c4ab8
145
+ :ciphertext_hex: '0000000010000000'
146
+ - :algorithm: :des
147
+ :key_hex: '0101010101010101'
148
+ :plaintext_hex: ca3a2b036dbc8502
149
+ :ciphertext_hex: 0000000008000000
150
+ - :algorithm: :des
151
+ :key_hex: '0101010101010101'
152
+ :plaintext_hex: 5e0905517bb59bcf
153
+ :ciphertext_hex: '0000000004000000'
154
+ - :algorithm: :des
155
+ :key_hex: '0101010101010101'
156
+ :plaintext_hex: 814eeb3b91d90726
157
+ :ciphertext_hex: '0000000002000000'
158
+ - :algorithm: :des
159
+ :key_hex: '0101010101010101'
160
+ :plaintext_hex: 4d49db1532919c9f
161
+ :ciphertext_hex: '0000000001000000'
162
+ - :algorithm: :des
163
+ :key_hex: '0101010101010101'
164
+ :plaintext_hex: 25eb5fc3f8cf0621
165
+ :ciphertext_hex: 0000000000800000
166
+ - :algorithm: :des
167
+ :key_hex: '0101010101010101'
168
+ :plaintext_hex: ab6a20c0620d1c6f
169
+ :ciphertext_hex: '0000000000400000'
170
+ - :algorithm: :des
171
+ :key_hex: '0101010101010101'
172
+ :plaintext_hex: 79e90dbc98f92cca
173
+ :ciphertext_hex: '0000000000200000'
174
+ - :algorithm: :des
175
+ :key_hex: '0101010101010101'
176
+ :plaintext_hex: 866ecedd8072bb0e
177
+ :ciphertext_hex: '0000000000100000'
178
+ - :algorithm: :des
179
+ :key_hex: '0101010101010101'
180
+ :plaintext_hex: 8b54536f2f3e64a8
181
+ :ciphertext_hex: 0000000000080000
182
+ - :algorithm: :des
183
+ :key_hex: '0101010101010101'
184
+ :plaintext_hex: ea51d3975595b86b
185
+ :ciphertext_hex: '0000000000040000'
186
+ - :algorithm: :des
187
+ :key_hex: '0101010101010101'
188
+ :plaintext_hex: caffc6ac4542de31
189
+ :ciphertext_hex: '0000000000020000'
190
+ - :algorithm: :des
191
+ :key_hex: '0101010101010101'
192
+ :plaintext_hex: 8dd45a2ddf90796c
193
+ :ciphertext_hex: '0000000000010000'
194
+ - :algorithm: :des
195
+ :key_hex: '0101010101010101'
196
+ :plaintext_hex: 1029d55e880ec2d0
197
+ :ciphertext_hex: 0000000000008000
198
+ - :algorithm: :des
199
+ :key_hex: '0101010101010101'
200
+ :plaintext_hex: 5d86cb23639dbea9
201
+ :ciphertext_hex: '0000000000004000'
202
+ - :algorithm: :des
203
+ :key_hex: '0101010101010101'
204
+ :plaintext_hex: 1d1ca853ae7c0c5f
205
+ :ciphertext_hex: '0000000000002000'
206
+ - :algorithm: :des
207
+ :key_hex: '0101010101010101'
208
+ :plaintext_hex: ce332329248f3228
209
+ :ciphertext_hex: '0000000000001000'
210
+ - :algorithm: :des
211
+ :key_hex: '0101010101010101'
212
+ :plaintext_hex: 8405d1abe24fb942
213
+ :ciphertext_hex: 0000000000000800
214
+ - :algorithm: :des
215
+ :key_hex: '0101010101010101'
216
+ :plaintext_hex: e643d78090ca4207
217
+ :ciphertext_hex: '0000000000000400'
218
+ - :algorithm: :des
219
+ :key_hex: '0101010101010101'
220
+ :plaintext_hex: 48221b9937748a23
221
+ :ciphertext_hex: '0000000000000200'
222
+ - :algorithm: :des
223
+ :key_hex: '0101010101010101'
224
+ :plaintext_hex: dd7c0bbd61fafd54
225
+ :ciphertext_hex: '0000000000000100'
226
+ - :algorithm: :des
227
+ :key_hex: '0101010101010101'
228
+ :plaintext_hex: 2fbc291a570db5c4
229
+ :ciphertext_hex: 0000000000000080
230
+ - :algorithm: :des
231
+ :key_hex: '0101010101010101'
232
+ :plaintext_hex: e07c30d7e4e26e12
233
+ :ciphertext_hex: '0000000000000040'
234
+ - :algorithm: :des
235
+ :key_hex: '0101010101010101'
236
+ :plaintext_hex: 0953e2258e8e90a1
237
+ :ciphertext_hex: '0000000000000020'
238
+ - :algorithm: :des
239
+ :key_hex: '0101010101010101'
240
+ :plaintext_hex: 5b711bc4ceebf2ee
241
+ :ciphertext_hex: '0000000000000010'
242
+ - :algorithm: :des
243
+ :key_hex: '0101010101010101'
244
+ :plaintext_hex: cc083f1e6d9e85f6
245
+ :ciphertext_hex: 0000000000000008
246
+ - :algorithm: :des
247
+ :key_hex: '0101010101010101'
248
+ :plaintext_hex: d2fd8867d50d2dfe
249
+ :ciphertext_hex: '0000000000000004'
250
+ - :algorithm: :des
251
+ :key_hex: '0101010101010101'
252
+ :plaintext_hex: 06e7ea22ce92708f
253
+ :ciphertext_hex: '0000000000000002'
254
+ - :algorithm: :des
255
+ :key_hex: '0101010101010101'
256
+ :plaintext_hex: 166b40b44aba4bd6
257
+ :ciphertext_hex: '0000000000000001'
258
+ - :algorithm: :des
259
+ :key_hex: '8001010101010101'
260
+ :plaintext_hex: '0000000000000000'
261
+ :ciphertext_hex: 95a8d72813daa94d
262
+ - :algorithm: :des
263
+ :key_hex: '4001010101010101'
264
+ :plaintext_hex: '0000000000000000'
265
+ :ciphertext_hex: 0eec1487dd8c26d5
266
+ - :algorithm: :des
267
+ :key_hex: '2001010101010101'
268
+ :plaintext_hex: '0000000000000000'
269
+ :ciphertext_hex: 7ad16ffb79c45926
270
+ - :algorithm: :des
271
+ :key_hex: '1001010101010101'
272
+ :plaintext_hex: '0000000000000000'
273
+ :ciphertext_hex: d3746294ca6a6cf3
274
+ - :algorithm: :des
275
+ :key_hex: 0801010101010101
276
+ :plaintext_hex: '0000000000000000'
277
+ :ciphertext_hex: 809f5f873c1fd761
278
+ - :algorithm: :des
279
+ :key_hex: '0401010101010101'
280
+ :plaintext_hex: '0000000000000000'
281
+ :ciphertext_hex: c02faffec989d1fc
282
+ - :algorithm: :des
283
+ :key_hex: '0201010101010101'
284
+ :plaintext_hex: '0000000000000000'
285
+ :ciphertext_hex: 4615aa1d33e72f10
286
+ - :algorithm: :des
287
+ :key_hex: 0180010101010101
288
+ :plaintext_hex: '0000000000000000'
289
+ :ciphertext_hex: 2055123350c00858
290
+ - :algorithm: :des
291
+ :key_hex: '0140010101010101'
292
+ :plaintext_hex: '0000000000000000'
293
+ :ciphertext_hex: df3b99d6577397c8
294
+ - :algorithm: :des
295
+ :key_hex: '0120010101010101'
296
+ :plaintext_hex: '0000000000000000'
297
+ :ciphertext_hex: 31fe17369b5288c9
298
+ - :algorithm: :des
299
+ :key_hex: '0110010101010101'
300
+ :plaintext_hex: '0000000000000000'
301
+ :ciphertext_hex: dfdd3cc64dae1642
302
+ - :algorithm: :des
303
+ :key_hex: 0108010101010101
304
+ :plaintext_hex: '0000000000000000'
305
+ :ciphertext_hex: 178c83ce2b399d94
306
+ - :algorithm: :des
307
+ :key_hex: '0104010101010101'
308
+ :plaintext_hex: '0000000000000000'
309
+ :ciphertext_hex: 50f636324a9b7f80
310
+ - :algorithm: :des
311
+ :key_hex: '0102010101010101'
312
+ :plaintext_hex: '0000000000000000'
313
+ :ciphertext_hex: a8468ee3bc18f06d
314
+ - :algorithm: :des
315
+ :key_hex: 0101800101010101
316
+ :plaintext_hex: '0000000000000000'
317
+ :ciphertext_hex: a2dc9e92fd3cde92
318
+ - :algorithm: :des
319
+ :key_hex: '0101400101010101'
320
+ :plaintext_hex: '0000000000000000'
321
+ :ciphertext_hex: cac09f797d031287
322
+ - :algorithm: :des
323
+ :key_hex: '0101200101010101'
324
+ :plaintext_hex: '0000000000000000'
325
+ :ciphertext_hex: 90ba680b22aeb525
326
+ - :algorithm: :des
327
+ :key_hex: '0101100101010101'
328
+ :plaintext_hex: '0000000000000000'
329
+ :ciphertext_hex: ce7a24f350e280b6
330
+ - :algorithm: :des
331
+ :key_hex: 0101080101010101
332
+ :plaintext_hex: '0000000000000000'
333
+ :ciphertext_hex: 882bff0aa01a0b87
334
+ - :algorithm: :des
335
+ :key_hex: '0101040101010101'
336
+ :plaintext_hex: '0000000000000000'
337
+ :ciphertext_hex: 25610288924511c2
338
+ - :algorithm: :des
339
+ :key_hex: '0101020101010101'
340
+ :plaintext_hex: '0000000000000000'
341
+ :ciphertext_hex: c71516c29c75d170
342
+ - :algorithm: :des
343
+ :key_hex: 0101018001010101
344
+ :plaintext_hex: '0000000000000000'
345
+ :ciphertext_hex: 5199c29a52c9f059
346
+ - :algorithm: :des
347
+ :key_hex: '0101014001010101'
348
+ :plaintext_hex: '0000000000000000'
349
+ :ciphertext_hex: c22f0a294a71f29f
350
+ - :algorithm: :des
351
+ :key_hex: '0101012001010101'
352
+ :plaintext_hex: '0000000000000000'
353
+ :ciphertext_hex: ee371483714c02ea
354
+ - :algorithm: :des
355
+ :key_hex: '0101011001010101'
356
+ :plaintext_hex: '0000000000000000'
357
+ :ciphertext_hex: a81fbd448f9e522f
358
+ - :algorithm: :des
359
+ :key_hex: 0101010801010101
360
+ :plaintext_hex: '0000000000000000'
361
+ :ciphertext_hex: 4f644c92e192dfed
362
+ - :algorithm: :des
363
+ :key_hex: '0101010401010101'
364
+ :plaintext_hex: '0000000000000000'
365
+ :ciphertext_hex: 1afa9a66a6df92ae
366
+ - :algorithm: :des
367
+ :key_hex: '0101010201010101'
368
+ :plaintext_hex: '0000000000000000'
369
+ :ciphertext_hex: b3c1cc715cb879d8
370
+ - :algorithm: :des
371
+ :key_hex: 0101010180010101
372
+ :plaintext_hex: '0000000000000000'
373
+ :ciphertext_hex: 19d032e64ab0bd8b
374
+ - :algorithm: :des
375
+ :key_hex: '0101010140010101'
376
+ :plaintext_hex: '0000000000000000'
377
+ :ciphertext_hex: 3cfaa7a7dc8720dc
378
+ - :algorithm: :des
379
+ :key_hex: '0101010120010101'
380
+ :plaintext_hex: '0000000000000000'
381
+ :ciphertext_hex: b7265f7f447ac6f3
382
+ - :algorithm: :des
383
+ :key_hex: '0101010110010101'
384
+ :plaintext_hex: '0000000000000000'
385
+ :ciphertext_hex: 9db73b3c0d163f54
386
+ - :algorithm: :des
387
+ :key_hex: 0101010108010101
388
+ :plaintext_hex: '0000000000000000'
389
+ :ciphertext_hex: 8181b65babf4a975
390
+ - :algorithm: :des
391
+ :key_hex: '0101010104010101'
392
+ :plaintext_hex: '0000000000000000'
393
+ :ciphertext_hex: 93c9b64042eaa240
394
+ - :algorithm: :des
395
+ :key_hex: '0101010102010101'
396
+ :plaintext_hex: '0000000000000000'
397
+ :ciphertext_hex: '5570530829705592'
398
+ - :algorithm: :des
399
+ :key_hex: 0101010101800101
400
+ :plaintext_hex: '0000000000000000'
401
+ :ciphertext_hex: 8638809e878787a0
402
+ - :algorithm: :des
403
+ :key_hex: '0101010101400101'
404
+ :plaintext_hex: '0000000000000000'
405
+ :ciphertext_hex: 41b9a79af79ac208
406
+ - :algorithm: :des
407
+ :key_hex: '0101010101200101'
408
+ :plaintext_hex: '0000000000000000'
409
+ :ciphertext_hex: 7a9be42f2009a892
410
+ - :algorithm: :des
411
+ :key_hex: '0101010101100101'
412
+ :plaintext_hex: '0000000000000000'
413
+ :ciphertext_hex: 29038d56ba6d2745
414
+ - :algorithm: :des
415
+ :key_hex: 0101010101080101
416
+ :plaintext_hex: '0000000000000000'
417
+ :ciphertext_hex: 5495c6abf1e5df51
418
+ - :algorithm: :des
419
+ :key_hex: '0101010101040101'
420
+ :plaintext_hex: '0000000000000000'
421
+ :ciphertext_hex: ae13dbd561488933
422
+ - :algorithm: :des
423
+ :key_hex: '0101010101020101'
424
+ :plaintext_hex: '0000000000000000'
425
+ :ciphertext_hex: 024d1ffa8904e389
426
+ - :algorithm: :des
427
+ :key_hex: 0101010101018001
428
+ :plaintext_hex: '0000000000000000'
429
+ :ciphertext_hex: d1399712f99bf02e
430
+ - :algorithm: :des
431
+ :key_hex: '0101010101014001'
432
+ :plaintext_hex: '0000000000000000'
433
+ :ciphertext_hex: 14c1d7c1cffec79e
434
+ - :algorithm: :des
435
+ :key_hex: '0101010101012001'
436
+ :plaintext_hex: '0000000000000000'
437
+ :ciphertext_hex: 1de5279dae3bed6f
438
+ - :algorithm: :des
439
+ :key_hex: '0101010101011001'
440
+ :plaintext_hex: '0000000000000000'
441
+ :ciphertext_hex: e941a33f85501303
442
+ - :algorithm: :des
443
+ :key_hex: 0101010101010801
444
+ :plaintext_hex: '0000000000000000'
445
+ :ciphertext_hex: da99dbbc9a03f379
446
+ - :algorithm: :des
447
+ :key_hex: '0101010101010401'
448
+ :plaintext_hex: '0000000000000000'
449
+ :ciphertext_hex: b7fc92f91d8e92e9
450
+ - :algorithm: :des
451
+ :key_hex: '0101010101010201'
452
+ :plaintext_hex: '0000000000000000'
453
+ :ciphertext_hex: ae8e5caa3ca04e85
454
+ - :algorithm: :des
455
+ :key_hex: 0101010101010180
456
+ :plaintext_hex: '0000000000000000'
457
+ :ciphertext_hex: 9cc62df43b6eed74
458
+ - :algorithm: :des
459
+ :key_hex: '0101010101010140'
460
+ :plaintext_hex: '0000000000000000'
461
+ :ciphertext_hex: d863dbb5c59a91a0
462
+ - :algorithm: :des
463
+ :key_hex: '0101010101010120'
464
+ :plaintext_hex: '0000000000000000'
465
+ :ciphertext_hex: a1ab2190545b91d7
466
+ - :algorithm: :des
467
+ :key_hex: '0101010101010110'
468
+ :plaintext_hex: '0000000000000000'
469
+ :ciphertext_hex: 0875041e64c570f7
470
+ - :algorithm: :des
471
+ :key_hex: 0101010101010108
472
+ :plaintext_hex: '0000000000000000'
473
+ :ciphertext_hex: 5a594528bebef1cc
474
+ - :algorithm: :des
475
+ :key_hex: '0101010101010104'
476
+ :plaintext_hex: '0000000000000000'
477
+ :ciphertext_hex: fcdb3291de21f0c0
478
+ - :algorithm: :des
479
+ :key_hex: '0101010101010102'
480
+ :plaintext_hex: '0000000000000000'
481
+ :ciphertext_hex: 869efd7f9f265a09
482
+ - :algorithm: :des
483
+ :key_hex: '1046913489980131'
484
+ :plaintext_hex: '0000000000000000'
485
+ :ciphertext_hex: 88d55e54f54c97b4
486
+ - :algorithm: :des
487
+ :key_hex: '1007103489988020'
488
+ :plaintext_hex: '0000000000000000'
489
+ :ciphertext_hex: 0c0cc00c83ea48fd
490
+ - :algorithm: :des
491
+ :key_hex: 10071034c8980120
492
+ :plaintext_hex: '0000000000000000'
493
+ :ciphertext_hex: 83bc8ef3a6570183
494
+ - :algorithm: :des
495
+ :key_hex: '1046103489988020'
496
+ :plaintext_hex: '0000000000000000'
497
+ :ciphertext_hex: df725dcad94ea2e9
498
+ - :algorithm: :des
499
+ :key_hex: '1086911519190101'
500
+ :plaintext_hex: '0000000000000000'
501
+ :ciphertext_hex: e652b53b550be8b0
502
+ - :algorithm: :des
503
+ :key_hex: '1086911519580101'
504
+ :plaintext_hex: '0000000000000000'
505
+ :ciphertext_hex: af527120c485cbb0
506
+ - :algorithm: :des
507
+ :key_hex: 5107b01519580101
508
+ :plaintext_hex: '0000000000000000'
509
+ :ciphertext_hex: 0f04ce393db926d5
510
+ - :algorithm: :des
511
+ :key_hex: 1007b01519190101
512
+ :plaintext_hex: '0000000000000000'
513
+ :ciphertext_hex: c9f00ffc74079067
514
+ - :algorithm: :des
515
+ :key_hex: '3107915498080101'
516
+ :plaintext_hex: '0000000000000000'
517
+ :ciphertext_hex: 7cfd82a593252b4e
518
+ - :algorithm: :des
519
+ :key_hex: '3107919498080101'
520
+ :plaintext_hex: '0000000000000000'
521
+ :ciphertext_hex: cb49a2f9e91363e3
522
+ - :algorithm: :des
523
+ :key_hex: 10079115b9080140
524
+ :plaintext_hex: '0000000000000000'
525
+ :ciphertext_hex: 00b588be70d23f56
526
+ - :algorithm: :des
527
+ :key_hex: '3107911598090140'
528
+ :plaintext_hex: '0000000000000000'
529
+ :ciphertext_hex: 406a9a6ab43399ae
530
+ - :algorithm: :des
531
+ :key_hex: 1007d01589980101
532
+ :plaintext_hex: '0000000000000000'
533
+ :ciphertext_hex: 6cb773611dca9ada
534
+ - :algorithm: :des
535
+ :key_hex: '9107911589980101'
536
+ :plaintext_hex: '0000000000000000'
537
+ :ciphertext_hex: 67fd21c17dbb5d70
538
+ - :algorithm: :des
539
+ :key_hex: 9107d01589190101
540
+ :plaintext_hex: '0000000000000000'
541
+ :ciphertext_hex: 9592cb4110430787
542
+ - :algorithm: :des
543
+ :key_hex: 1007d01598980120
544
+ :plaintext_hex: '0000000000000000'
545
+ :ciphertext_hex: a6b7ff68a318ddd3
546
+ - :algorithm: :des
547
+ :key_hex: '1007940498190101'
548
+ :plaintext_hex: '0000000000000000'
549
+ :ciphertext_hex: 4d102196c914ca16
550
+ - :algorithm: :des
551
+ :key_hex: 0107910491190401
552
+ :plaintext_hex: '0000000000000000'
553
+ :ciphertext_hex: 2dfa9f4573594965
554
+ - :algorithm: :des
555
+ :key_hex: 0107910491190101
556
+ :plaintext_hex: '0000000000000000'
557
+ :ciphertext_hex: b46604816c0e0774
558
+ - :algorithm: :des
559
+ :key_hex: 0107940491190401
560
+ :plaintext_hex: '0000000000000000'
561
+ :ciphertext_hex: 6e7e6221a4f34e87
562
+ - :algorithm: :des
563
+ :key_hex: 19079210981a0101
564
+ :plaintext_hex: '0000000000000000'
565
+ :ciphertext_hex: aa85e74643233199
566
+ - :algorithm: :des
567
+ :key_hex: '1007911998190801'
568
+ :plaintext_hex: '0000000000000000'
569
+ :ciphertext_hex: 2e5a19db4d1962d6
570
+ - :algorithm: :des
571
+ :key_hex: 10079119981a0801
572
+ :plaintext_hex: '0000000000000000'
573
+ :ciphertext_hex: 23a866a809d30894
574
+ - :algorithm: :des
575
+ :key_hex: '1007921098190101'
576
+ :plaintext_hex: '0000000000000000'
577
+ :ciphertext_hex: d812d961f017d320
578
+ - :algorithm: :des
579
+ :key_hex: 100791159819010b
580
+ :plaintext_hex: '0000000000000000'
581
+ :ciphertext_hex: 055605816e58608f
582
+ - :algorithm: :des
583
+ :key_hex: '1004801598190101'
584
+ :plaintext_hex: '0000000000000000'
585
+ :ciphertext_hex: abd88e8b1b7716f1
586
+ - :algorithm: :des
587
+ :key_hex: '1004801598190102'
588
+ :plaintext_hex: '0000000000000000'
589
+ :ciphertext_hex: 537ac95be69da1e1
590
+ - :algorithm: :des
591
+ :key_hex: '1004801598190108'
592
+ :plaintext_hex: '0000000000000000'
593
+ :ciphertext_hex: aed0f6ae3c25cdd8
594
+ - :algorithm: :des
595
+ :key_hex: '1002911598100104'
596
+ :plaintext_hex: '0000000000000000'
597
+ :ciphertext_hex: b3e35a5ee53e7b8d
598
+ - :algorithm: :des
599
+ :key_hex: '1002911598190104'
600
+ :plaintext_hex: '0000000000000000'
601
+ :ciphertext_hex: 61c79c71921a2ef8
602
+ - :algorithm: :des
603
+ :key_hex: '1002911598100201'
604
+ :plaintext_hex: '0000000000000000'
605
+ :ciphertext_hex: e2f5728f0995013c
606
+ - :algorithm: :des
607
+ :key_hex: '1002911698100101'
608
+ :plaintext_hex: '0000000000000000'
609
+ :ciphertext_hex: 1aeac39a61f0a464
610
+ - :algorithm: :des
611
+ :key_hex: 7ca110454a1a6e57
612
+ :plaintext_hex: 01a1d6d039776742
613
+ :ciphertext_hex: 690f5b0d9a26939b
614
+ - :algorithm: :des
615
+ :key_hex: 0131d9619dc1376e
616
+ :plaintext_hex: 5cd54ca83def57da
617
+ :ciphertext_hex: 7a389d10354bd271
618
+ - :algorithm: :des
619
+ :key_hex: 07a1133e4a0b2686
620
+ :plaintext_hex: 0248d43806f67172
621
+ :ciphertext_hex: 868ebb51cab4599a
622
+ - :algorithm: :des
623
+ :key_hex: 3849674c2602319e
624
+ :plaintext_hex: 51454b582ddf440a
625
+ :ciphertext_hex: 7178876e01f19b2a
626
+ - :algorithm: :des
627
+ :key_hex: 04b915ba43feb5b6
628
+ :plaintext_hex: 42fd443059577fa2
629
+ :ciphertext_hex: af37fb421f8c4095
630
+ - :algorithm: :des
631
+ :key_hex: 0113b970fd34f2ce
632
+ :plaintext_hex: 059b5e0851cf143a
633
+ :ciphertext_hex: 86a560f10ec6d85b
634
+ - :algorithm: :des
635
+ :key_hex: 0170f175468fb5e6
636
+ :plaintext_hex: 0756d8e0774761d2
637
+ :ciphertext_hex: 0cd3da020021dc09
638
+ - :algorithm: :des
639
+ :key_hex: 43297fad38e373fe
640
+ :plaintext_hex: 762514b829bf486a
641
+ :ciphertext_hex: ea676b2cb7db2b7a
642
+ - :algorithm: :des
643
+ :key_hex: 07a7137045da2a16
644
+ :plaintext_hex: 3bdd119049372802
645
+ :ciphertext_hex: dfd64a815caf1a0f
646
+ - :algorithm: :des
647
+ :key_hex: 04689104c2fd3b2f
648
+ :plaintext_hex: 26955f6835af609a
649
+ :ciphertext_hex: 5c513c9c4886c088
650
+ - :algorithm: :des
651
+ :key_hex: 37d06bb516cb7546
652
+ :plaintext_hex: 164d5e404f275232
653
+ :ciphertext_hex: 0a2aeeae3ff4ab77
654
+ - :algorithm: :des
655
+ :key_hex: 1f08260d1ac2465e
656
+ :plaintext_hex: 6b056e18759f5cca
657
+ :ciphertext_hex: ef1bf03e5dfa575a
658
+ - :algorithm: :des
659
+ :key_hex: 584023641aba6176
660
+ :plaintext_hex: 004bd6ef09176062
661
+ :ciphertext_hex: 88bf0db6d70dee56
662
+ - :algorithm: :des
663
+ :key_hex: 025816164629b007
664
+ :plaintext_hex: 480d39006ee762f2
665
+ :ciphertext_hex: a1f9915541020b56
666
+ - :algorithm: :des
667
+ :key_hex: 49793ebc79b3258f
668
+ :plaintext_hex: 437540c8698f3cfa
669
+ :ciphertext_hex: 6fbf1cafcffd0556
670
+ - :algorithm: :des
671
+ :key_hex: 4fb05e1515ab73a7
672
+ :plaintext_hex: 072d43a077075292
673
+ :ciphertext_hex: 2f22e49bab7ca1ac
674
+ - :algorithm: :des
675
+ :key_hex: 49e95d6d4ca229bf
676
+ :plaintext_hex: 02fe55778117f12a
677
+ :ciphertext_hex: 5a6b612cc26cce4a
678
+ - :algorithm: :des
679
+ :key_hex: 018310dc409b26d6
680
+ :plaintext_hex: 1d9d5c5018f728c2
681
+ :ciphertext_hex: 5f4c038ed12b2e41
682
+ - :algorithm: :des
683
+ :key_hex: 1c587f1c13924fef
684
+ :plaintext_hex: 305532286d6f295a
685
+ :ciphertext_hex: 63fac0d034d9f793
686
+ - :algorithm: :des
687
+ :key_hex: 0123456789abcdef
688
+ :plaintext_hex: 4e6f77206973207468652074696d6520666f7220616c6c20
689
+ :iv_hex: 1234567890abcdef
690
+ :block_mode: :cbc
691
+ :padding: :zeroes
692
+ :ciphertext_hex: e5c7cdde872bf27c43e934008c389c0f683788499a7c05f6
693
+ - :algorithm: :des
694
+ :key_hex: 0123456789abcdef
695
+ :plaintext_hex: 4e6f77206973207468652074696d6520666f7220616c6c20
696
+ :iv_hex: 1234567890abcdef
697
+ :block_mode: :cbc
698
+ :padding: :pkcs
699
+ :ciphertext_hex: e5c7cdde872bf27c43e934008c389c0f683788499a7c05f662c16a27e4fcf277
700
+ - :algorithm: :des
701
+ :key_hex: 0123456789abcdef
702
+ :plaintext_hex: 4e6f77206973207468652074696d6520666f7220616c6c20
703
+ :iv_hex: 1234567890abcdef
704
+ :block_mode: :cbc_cts
705
+ :ciphertext_hex: e5c7cdde872bf27c683788499a7c05f643e934008c389c0f
706
+ - :algorithm: :des
707
+ :key_hex: 0123456789abcdef
708
+ :plaintext_hex: 4e6f77206973207468652074696d6520666f7220616c6c20
709
+ :iv_hex: 1234567890abcdef
710
+ :block_mode: :cfb
711
+ :ciphertext_hex: f3096249c7f46e51a69e839b1a92f78403467133898ea622
712
+ - :algorithm: :des
713
+ :key_hex: 0123456789abcdef
714
+ :plaintext_hex: 4e6f77206973207468652074696d6520666f7220616c6c20
715
+ :iv_hex: 1234567890abcdef
716
+ :block_mode: :ofb
717
+ :ciphertext_hex: f3096249c7f46e5135f24a242eeb3d3f3d6d5be3255af8c3
718
+ - :algorithm: :des
719
+ :key_hex: 0123456789abcdef
720
+ :plaintext_hex: 4e6f77206973207468652074696d6520666f7220616c6c20
721
+ :iv_hex: 1234567890abcdef
722
+ :block_mode: :counter
723
+ :ciphertext_hex: f3096249c7f46e51163a8ca0ffc94c27fa2f80f480b86f75