• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/CommonCrypto-60061/test/CommonCrypto/

Lines Matching refs:retval

49 	int retval;
63 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
64 ok(retval == 0, "CBC with Padding 1 byte CCCrypt");
65 accum |= retval;
66 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
67 ok(retval == 0, "CBC with Padding 1 byte Multiple Updates");
68 accum |= retval;
73 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
74 ok(retval == 0, "CBC with Padding 15 byte CCCrypt");
75 accum |= retval;
76 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
77 ok(retval == 0, "CBC with Padding 15 byte Multiple Updates");
78 accum |= retval;
83 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
84 ok(retval == 0, "CBC with Padding 16 byte CCCrypt");
85 accum |= retval;
86 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
87 ok(retval == 0, "CBC with Padding 16 byte Multiple Updates");
88 accum |= retval;
93 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
94 ok(retval == 0, "CBC with Padding 17 byte CCCrypt");
95 accum |= retval;
96 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
97 ok(retval == 0, "CBC with Padding 17 byte Multiple Updates");
98 accum |= retval;
103 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
104 ok(retval == 0, "CBC with Padding 31 byte CCCrypt");
105 accum |= retval;
106 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
107 ok(retval == 0, "CBC with Padding 31 byte Multiple Updates");
108 accum |= retval;
113 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
114 ok(retval == 0, "CBC with Padding 32 byte CCCrypt");
115 accum |= retval;
116 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
117 ok(retval == 0, "CBC with Padding 32 byte Multiple Updates");
118 accum |= retval;
123 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
124 ok(retval == 0, "CBC with Padding 33 byte CCCrypt");
125 accum |= retval;
126 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
127 ok(retval == 0, "CBC with Padding 33 byte Multiple Updates");
128 accum |= retval;
134 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
135 ok(retval == 0, "CBC with Padding 1 byte CCCrypt NULL IV");
136 accum |= retval;
137 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
138 ok(retval == 0, "CBC with Padding 1 byte Multiple Updates NULL IV");
139 accum |= retval;
144 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
145 ok(retval == 0, "CBC with Padding 15 byte CCCrypt NULL IV");
146 accum |= retval;
147 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
148 ok(retval == 0, "CBC with Padding 15 byte Multiple Updates NULL IV");
149 accum |= retval;
154 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
155 ok(retval == 0, "CBC with Padding 16 byte CCCrypt NULL IV");
156 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
157 ok(retval == 0, "CBC with Padding 16 byte Multiple Updates NULL IV");
158 accum |= retval;
163 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
164 ok(retval == 0, "CBC with Padding 17 byte CCCrypt NULL IV");
165 accum |= retval;
166 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
167 ok(retval == 0, "CBC with Padding 17 byte Multiple Updates NULL IV");
168 accum |= retval;
173 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
174 ok(retval == 0, "CBC with Padding 31 byte CCCrypt NULL IV");
175 accum |= retval;
176 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
177 ok(retval == 0, "CBC with Padding 31 byte Multiple Updates NULL IV");
178 accum |= retval;
183 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
184 ok(retval == 0, "CBC with Padding 32 byte CCCrypt NULL IV");
185 accum |= retval;
186 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
187 ok(retval == 0, "CBC with Padding 32 byte Multiple Updates NULL IV");
188 accum |= retval;
193 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
194 ok(retval == 0, "CBC with Padding 33 byte CCCrypt NULL IV");
195 accum |= retval;
196 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
197 ok(retval == 0, "CBC with Padding 33 byte Multiple Updates NULL IV");
198 accum |= retval;
208 retval = CCCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
209 ok(retval == 0, "CBC-blowfish vector 1");
210 accum |= retval;
211 retval = CCMultiCryptTestCase(keyStr, iv, alg, options, cipherText, plainText);
212 ok(retval == 0, "CBC-blowfish vector 1");
213 accum |= retval;