| /src/crypto/external/apache2/openssl/dist/test/ |
| ideatest.c | 58 static unsigned char cfb_buf1[40], cfb_buf2[40], cfb_tmp[8]; variable 113 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_tmp)); 116 cfb_tmp, &n, IDEA_ENCRYPT); 119 cfb_tmp, &n, IDEA_ENCRYPT); 122 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_tmp)); 125 cfb_tmp, &n, IDEA_DECRYPT); 128 cfb_tmp, &n, IDEA_DECRYPT);
|
| destest.c | 344 static unsigned char cfb_buf1[40], cfb_buf2[40], cfb_tmp[8]; variable 613 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 614 DES_cfb_encrypt(plain, cfb_buf1, bits, sizeof(plain), &ks, &cfb_tmp, 618 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 619 DES_cfb_encrypt(cfb_buf1, cfb_buf2, bits, sizeof(plain), &ks, &cfb_tmp, 654 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 656 DES_cfb64_encrypt(plain, cfb_buf1, 12, &ks, &cfb_tmp, &n, DES_ENCRYPT); 658 &cfb_tmp, &n, DES_ENCRYPT); 661 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 663 DES_cfb64_encrypt(cfb_buf1, cfb_buf2, 17, &ks, &cfb_tmp, &n, DES_DECRYPT) [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| ideatest.c | 43 static unsigned char cfb_buf1[40], cfb_buf2[40], cfb_tmp[8]; variable 98 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_tmp)); 101 cfb_tmp, &n, IDEA_ENCRYPT); 104 cfb_tmp, &n, IDEA_ENCRYPT); 107 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_tmp)); 110 cfb_tmp, &n, IDEA_DECRYPT); 113 cfb_tmp, &n, IDEA_DECRYPT);
|
| destest.c | 246 static unsigned char cfb_buf1[40], cfb_buf2[40], cfb_tmp[8]; variable 512 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 513 DES_cfb_encrypt(plain, cfb_buf1, bits, sizeof(plain), &ks, &cfb_tmp, 517 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 518 DES_cfb_encrypt(cfb_buf1, cfb_buf2, bits, sizeof(plain), &ks, &cfb_tmp, 553 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 555 DES_cfb64_encrypt(plain, cfb_buf1, 12, &ks, &cfb_tmp, &n, DES_ENCRYPT); 557 &cfb_tmp, &n, DES_ENCRYPT); 560 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 562 DES_cfb64_encrypt(cfb_buf1, cfb_buf2, 17, &ks, &cfb_tmp, &n, DES_DECRYPT) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| ideatest.c | 36 static unsigned char cfb_buf1[40], cfb_buf2[40], cfb_tmp[8]; variable 91 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_tmp)); 94 cfb_tmp, &n, IDEA_ENCRYPT); 97 cfb_tmp, &n, IDEA_ENCRYPT); 100 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_tmp)); 103 cfb_tmp, &n, IDEA_DECRYPT); 106 cfb_tmp, &n, IDEA_DECRYPT);
|
| destest.c | 239 static unsigned char cfb_buf1[40], cfb_buf2[40], cfb_tmp[8]; variable 505 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 506 DES_cfb_encrypt(plain, cfb_buf1, bits, sizeof(plain), &ks, &cfb_tmp, 510 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 511 DES_cfb_encrypt(cfb_buf1, cfb_buf2, bits, sizeof(plain), &ks, &cfb_tmp, 546 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 548 DES_cfb64_encrypt(plain, cfb_buf1, 12, &ks, &cfb_tmp, &n, DES_ENCRYPT); 550 &cfb_tmp, &n, DES_ENCRYPT); 553 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 555 DES_cfb64_encrypt(cfb_buf1, cfb_buf2, 17, &ks, &cfb_tmp, &n, DES_DECRYPT) [all...] |
| /src/tests/lib/libdes/ |
| t_des.c | 290 static unsigned char cfb_buf1[40], cfb_buf2[40], cfb_tmp[8]; variable 390 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 391 des_cfb_encrypt(plain, cfb_buf1, bits, sizeof(plain), ks, &cfb_tmp, 395 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 396 des_cfb_encrypt(cfb_buf1, cfb_buf2, bits, sizeof(plain), ks, &cfb_tmp, 411 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 413 des_cfb64_encrypt(plain, cfb_buf1, 12, ks, &cfb_tmp, &n, DES_ENCRYPT); 415 &cfb_tmp, &n, DES_ENCRYPT); 418 memcpy(cfb_tmp, cfb_iv, sizeof(cfb_iv)); 420 des_cfb64_encrypt(cfb_buf1, cfb_buf2, 17, ks, &cfb_tmp, &n, DES_DECRYPT) [all...] |