Symbol: CFB
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
131
fb64_init(&fb[CFB]);
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
132
fb[CFB].fb_feed[4] = ENCTYPE_DES_CFB64;
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
133
fb[CFB].streams[0].str_flagshift = SHIFT_VAL(0, CFB);
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
134
fb[CFB].streams[1].str_flagshift = SHIFT_VAL(1, CFB);
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
142
fb[CFB].streams[0].str_flagshift = SHIFT_VAL(0, OFB);
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
143
fb[CFB].streams[1].str_flagshift = SHIFT_VAL(1, OFB);
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
166
return(fb64_start(&fb[CFB], dir, server));
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
247
return(fb64_is(data, cnt, &fb[CFB]));
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
329
return(fb64_reply(data, cnt, &fb[CFB]));
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
376
fb64_session(key, server, &fb[CFB]);
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
419
return(fb64_keyid(dir, kp, lenp, &fb[CFB]));
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
542
struct stinfo *stp = &fb[CFB].streams[DIR_ENCRYPT-1];
crypto/heimdal/appl/telnet/libtelnet/enc_des.c
564
struct stinfo *stp = &fb[CFB].streams[DIR_DECRYPT-1];
crypto/openssl/crypto/evp/e_aes.c
2410
BLOCK_CIPHER_generic(nid, keylen, 1, 16, cfb128, cfb, CFB, flags | EVP_CIPH_FLAG_DEFAULT_ASN1) \
crypto/openssl/crypto/evp/e_aes.c
2411
BLOCK_CIPHER_generic(nid, keylen, 1, 16, cfb1, cfb1, CFB, flags) \
crypto/openssl/crypto/evp/e_aes.c
2412
BLOCK_CIPHER_generic(nid, keylen, 1, 16, cfb8, cfb8, CFB, flags) \
crypto/openssl/crypto/evp/e_camellia.c
190
BLOCK_CIPHER_generic(nid, keylen, 1, 16, cfb128, cfb, CFB, flags | EVP_CIPH_FLAG_DEFAULT_ASN1) \
crypto/openssl/crypto/evp/e_camellia.c
191
BLOCK_CIPHER_generic(nid, keylen, 1, 16, cfb1, cfb1, CFB, flags) \
crypto/openssl/crypto/evp/e_camellia.c
192
BLOCK_CIPHER_generic(nid, keylen, 1, 16, cfb8, cfb8, CFB, flags) \
crypto/openssl/crypto/evp/e_sm4.c
56
BLOCK_CIPHER_generic(nid, 1, 16, cfb128, cfb, CFB, flags | EVP_CIPH_FLAG_DEFAULT_ASN1) \
crypto/openssl/engines/e_padlock.c
527
DECLARE_AES_EVP(128, cfb, CFB)
crypto/openssl/engines/e_padlock.c
533
DECLARE_AES_EVP(192, cfb, CFB)
crypto/openssl/engines/e_padlock.c
539
DECLARE_AES_EVP(256, cfb, CFB)
crypto/openssl/include/crypto/evp.h
474
BLOCK_CIPHER_def1(cname, cfb##cbits, cfb##cbits, CFB, kstruct, nid, 1, \
crypto/openssl/providers/implementations/ciphers/cipher_aes.c
69
IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 256, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aes.c
71
IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 192, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aes.c
73
IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aes.c
75
IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 256, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aes.c
77
IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 192, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aes.c
79
IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aes.c
81
IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 256, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aes.c
83
IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 192, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aes.c
85
IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aria.c
62
IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 256, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aria.c
64
IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 192, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aria.c
66
IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aria.c
68
IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 256, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aria.c
70
IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 192, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aria.c
72
IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aria.c
74
IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 256, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aria.c
76
IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 192, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_aria.c
78
IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_blowfish.c
58
IMPLEMENT_var_keylen_cipher(blowfish, BLOWFISH, cfb64, CFB, BF_FLAGS, 128, 8, 64, stream)
crypto/openssl/providers/implementations/ciphers/cipher_blowfish_hw.c
42
PROV_CIPHER_HW_blowfish_mode(cfb64, CFB)
crypto/openssl/providers/implementations/ciphers/cipher_camellia.c
68
IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb, CFB, 0, 256, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_camellia.c
70
IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb, CFB, 0, 192, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_camellia.c
72
IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_camellia.c
74
IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb1, CFB, 0, 256, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_camellia.c
76
IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb1, CFB, 0, 192, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_camellia.c
78
IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb1, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_camellia.c
80
IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb8, CFB, 0, 256, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_camellia.c
82
IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb8, CFB, 0, 192, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_camellia.c
84
IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb8, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_cast5.c
59
IMPLEMENT_var_keylen_cipher(cast5, CAST, cfb64, CFB, CAST5_FLAGS, 128, 8, 64, stream)
crypto/openssl/providers/implementations/ciphers/cipher_cast5_hw.c
42
PROV_CIPHER_HW_cast_mode(cfb64, CFB)
crypto/openssl/providers/implementations/ciphers/cipher_des.c
197
IMPLEMENT_des_cipher(des, cfb64, CFB, DES_FLAGS, 64, 8, 64, stream);
crypto/openssl/providers/implementations/ciphers/cipher_des.c
199
IMPLEMENT_des_cipher(des, cfb1, CFB, DES_FLAGS, 64, 8, 64, stream);
crypto/openssl/providers/implementations/ciphers/cipher_des.c
201
IMPLEMENT_des_cipher(des, cfb8, CFB, DES_FLAGS, 64, 8, 64, stream);
crypto/openssl/providers/implementations/ciphers/cipher_idea.c
57
IMPLEMENT_generic_cipher(idea, IDEA, cfb64, CFB, 0, 128, 8, 64, stream)
crypto/openssl/providers/implementations/ciphers/cipher_idea_hw.c
56
PROV_CIPHER_HW_idea_mode(cfb64, CFB)
crypto/openssl/providers/implementations/ciphers/cipher_rc2.c
295
IMPLEMENT_cipher(rc2, RC2, cfb128, CFB, RC2_FLAGS, 128, 8, 64, stream)
crypto/openssl/providers/implementations/ciphers/cipher_rc2_hw.c
43
PROV_CIPHER_HW_rc2_mode(cfb64, CFB)
crypto/openssl/providers/implementations/ciphers/cipher_rc5.c
185
IMPLEMENT_cipher(rc5, RC5, cfb64, CFB, RC5_FLAGS, 128, 8, 64, stream)
crypto/openssl/providers/implementations/ciphers/cipher_rc5_hw.c
41
PROV_CIPHER_HW_rc5_mode(cfb64, CFB)
crypto/openssl/providers/implementations/ciphers/cipher_seed.c
56
IMPLEMENT_generic_cipher(seed, SEED, cfb128, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_seed_hw.c
42
PROV_CIPHER_HW_seed_mode(cfb128, CFB)
crypto/openssl/providers/implementations/ciphers/cipher_sm4.c
52
IMPLEMENT_generic_cipher(sm4, SM4, cfb128, CFB, 0, 128, 8, 128, stream)
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default.c
22
IMPLEMENT_tdes_cipher(ede3, EDE3, cfb, CFB, TDES_FLAGS, 64 * 3, 8, 64, stream);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default.c
24
IMPLEMENT_tdes_cipher(ede3, EDE3, cfb1, CFB, TDES_FLAGS, 64 * 3, 8, 64, stream);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default.c
26
IMPLEMENT_tdes_cipher(ede3, EDE3, cfb8, CFB, TDES_FLAGS, 64 * 3, 8, 64, stream);
crypto/openssl/providers/implementations/ciphers/cipher_tdes_default.c
35
IMPLEMENT_tdes_cipher(ede2, EDE2, cfb, CFB, TDES_FLAGS, 64 * 2, 8, 64, stream);