HomeSort by: relevance | last modified time | path
    Searched defs:ptxt (Results 1 - 9 of 9) sorted by relevancy

  /src/tests/dev/cgd/
t_cgd_adiantum.c 57 const uint8_t *ptxt; member in struct:__anon565098fe0108
64 .ptxt = zerosector,
136 .ptxt = zerosector,
208 .ptxt = zerosector,
351 RL(nwrit = rump_sys_pwrite(cgdfd, C[i].ptxt, C[i].secsize,
386 if (memcmp(buf, C[i].ptxt, C[i].secsize)) {
388 atf_tc_fail_nonfatal("case %u ptxt mismatch", i);
t_cgd_3des.c 57 const uint8_t *ptxt; /* PlainText */ member in struct:testvec
372 .ptxt = c3des_cbc_ptxt,
377 .ptxt = c3des_cbc_ptxt,
382 .ptxt = c3des_cbc_ptxt,
387 .ptxt = c3des_cbc_ptxt,
675 .ptxt = c3des_cbc_ptxt,
680 .ptxt = c3des_cbc_ptxt,
685 .ptxt = c3des_cbc_ptxt,
690 .ptxt = c3des_cbc_ptxt,
762 if (rump_sys_write(cgdfd, tv->ptxt, SECSIZE) != SECSIZE
    [all...]
t_cgd_blowfish.c 57 const uint8_t *ptxt; /* PlainText */ member in struct:testvec
396 .ptxt = bf_cbc_ptxt,
401 .ptxt = bf_cbc_ptxt,
406 .ptxt = bf_cbc_ptxt,
411 .ptxt = bf_cbc_ptxt,
699 .ptxt = bf_cbc_ptxt,
704 .ptxt = bf_cbc_ptxt,
709 .ptxt = bf_cbc_ptxt,
714 .ptxt = bf_cbc_ptxt,
1002 .ptxt = bf_cbc_ptxt
    [all...]
t_cgd_aes.c 58 const uint8_t *ptxt; /* PlainText */ member in struct:testvec
393 .ptxt = aes_cbc_ptxt,
398 .ptxt = aes_cbc_ptxt,
403 .ptxt = aes_cbc_ptxt,
408 .ptxt = aes_cbc_ptxt,
696 .ptxt = aes_cbc_ptxt,
701 .ptxt = aes_cbc_ptxt,
706 .ptxt = aes_cbc_ptxt,
711 .ptxt = aes_cbc_ptxt,
999 .ptxt = aes_cbc_ptxt
    [all...]
  /src/sys/crypto/aes/
aes_selftest.c 450 static const uint8_t ptxt[48] = { local in function:aes_selftest_ccm
510 impl->ai_ccm_enc1(&enc, ptxt, buf, 16, authctr, nr);
514 impl->ai_ccm_enc1(&enc, ptxt + 16, buf + 16, 32, authctr, nr);
535 if (memcmp(buf, ptxt, 32))
536 result |= aes_selftest_fail(impl, buf, ptxt, 48,
aes_ccm.c 378 const uint8_t *ptxt; member in struct:__anon2f26520f0108
392 .ptxt = ptxt_seq + 8,
410 .ptxt = ptxt_seq + 8,
428 .ptxt = ptxt_seq + 8,
447 .ptxt = ptxt_seq + 12,
465 .ptxt = ptxt_seq + 12,
483 .ptxt = ptxt_seq + 12,
501 .ptxt = ptxt_rand + 12,
533 aes_ccm_enc(C, T[i].ptxt, bufp, 1);
534 aes_ccm_enc(C, T[i].ptxt + 1, bufp + 1, 2)
    [all...]
  /src/sys/crypto/aes/arch/arm/
aes_neon_subr.c 297 uint8x16_t auth, ptxt, ctr_be; local in function:aes_neon_ccm_enc1
308 ptxt = loadblock(in);
312 b2.val[0] = auth ^ ptxt;
316 storeblock(out, ptxt ^ b2.val[1]);
329 uint8x16_t auth, ctr_be, ptxt, pad; local in function:aes_neon_ccm_dec1
344 ptxt = loadblock(in) ^ pad;
345 auth ^= ptxt;
346 storeblock(out, ptxt);
  /src/sys/crypto/aes/arch/x86/
aes_ssse3_subr.c 234 __m128i auth, ctr_be, ctr, ptxt; local in function:aes_ssse3_ccm_enc1
243 ptxt = loadblock(in);
244 auth = aes_ssse3_enc1(enc, auth ^ ptxt, nrounds);
247 storeblock(out, ptxt ^ aes_ssse3_enc1(enc, ctr_be, nrounds));
261 __m128i auth, ctr_be, ctr, ptxt; local in function:aes_ssse3_ccm_dec1
272 ptxt = loadblock(in) ^ aes_ssse3_enc1(enc, ctr_be, nrounds);
273 storeblock(out, ptxt);
274 auth = aes_ssse3_enc1(enc, auth ^ ptxt, nrounds);
  /src/sys/dev/
cgd.c 74 const uint8_t *ptxt; member in struct:selftest_params
317 .ptxt = selftest_aes_xts_256_ptxt,
328 .ptxt = selftest_aes_xts_512_ptxt,
339 .ptxt = selftest_aes_cbc_128_ptxt,
350 .ptxt = selftest_aes_cbc_256_ptxt,
361 .ptxt = selftest_3des_cbc_ptxt,
372 .ptxt = selftest_bf_cbc_ptxt,
384 .ptxt = selftest_aes_cbc_encblkno8_zero64,
1699 memcpy(buf, selftests[i].ptxt, txtlen);
1712 if (memcmp(buf, selftests[i].ptxt, txtlen) != 0)
    [all...]

Completed in 20 milliseconds