Searched defs:testcase (Results 1 - 4 of 4) sorted by relevance

/bind-9.11.3/lib/isc/tests/
H A Daes_test.c124 aes_testcase_t *testcase = testcases; local
126 while (testcase->key != NULL) {
127 len = fromhexstr(testcase->key, key);
129 len = fromhexstr(testcase->input, plaintext);
133 ATF_CHECK_STREQ(str, testcase->result);
135 testcase++;
186 aes_testcase_t *testcase = testcases; local
188 while (testcase->key != NULL) {
189 len = fromhexstr(testcase->key, key);
191 len = fromhexstr(testcase
254 aes_testcase_t *testcase = testcases; local
[all...]
H A Dhash_test.c194 hash_testcase_t *testcase = testcases; local
196 while (testcase->input != NULL && testcase->result != NULL) {
198 for(i = 0; i < testcase->repeats; i++) {
200 (const isc_uint8_t *) testcase->input,
201 testcase->input_len);
205 ATF_CHECK_STREQ(str, testcase->result);
207 testcase++;
321 hash_testcase_t *testcase = testcases; local
323 while (testcase
453 hash_testcase_t *testcase = testcases; local
599 hash_testcase_t *testcase = testcases; local
746 hash_testcase_t *testcase = testcases; local
826 hash_testcase_t *testcase = testcases; local
916 hash_testcase_t *testcase = testcases; local
1069 hash_testcase_t *testcase = testcases; local
1232 hash_testcase_t *testcase = testcases; local
1401 hash_testcase_t *testcase = testcases; local
1570 hash_testcase_t *testcase = testcases; local
1714 hash_testcase_t *testcase = testcases; local
1828 hash_testcase_t *testcase = testcases; local
[all...]
/bind-9.11.3/lib/dns/tests/
H A Dprivate_test.c53 make_signing(signing_testcase_t *testcase, dns_rdata_t *private, argument
58 buf[0] = testcase->alg;
59 buf[1] = (testcase->keyid & 0xff00) >> 8;
60 buf[2] = (testcase->keyid & 0xff);
61 buf[3] = testcase->remove;
62 buf[4] = testcase->complete;
70 make_nsec3(nsec3_testcase_t *testcase, dns_rdata_t *private, argument
82 salt = htonl(testcase->salt);
91 params.hash = testcase->hash;
92 params.iterations = testcase
[all...]
H A Dgost_test.c194 hash_testcase_t *testcase = testcases; local
196 while (testcase->input != NULL && testcase->result != NULL) {
199 for(i = 0; i < testcase->repeats; i++) {
201 (const isc_uint8_t *) testcase->input,
202 testcase->input_len);
208 ATF_CHECK_STREQ(str, testcase->result);
210 testcase++;

Completed in 14 milliseconds