Home
last modified time | relevance | path

Searched refs:Ciphers (Results 1 – 5 of 5) sorted by relevance

/linux/Documentation/crypto/
H A Dapi-intro.rst42 Encryption with Associated Data), Block Ciphers, Ciphers, Compressors and
45 Please note that Block Ciphers is somewhat of a misnomer. It is in fact
47 between Block Ciphers and Ciphers is that the latter operates on exactly
H A Ddevel-algos.rst47 Single-Block Symmetric Ciphers [CIPHER]
98 Multi-Block Ciphers
/linux/fs/smb/client/
H A Dsmb2pdu.c675 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES256_GCM; in build_encrypt_ctxt()
679 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM; in build_encrypt_ctxt()
680 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES256_GCM; in build_encrypt_ctxt()
681 pneg_ctxt->Ciphers[2] = SMB2_ENCRYPTION_AES128_CCM; in build_encrypt_ctxt()
685 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM; in build_encrypt_ctxt()
686 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES128_CCM; in build_encrypt_ctxt()
882 cifs_dbg(FYI, "SMB311 cipher type:%d\n", le16_to_cpu(ctxt->Ciphers[0])); in decode_encrypt_ctx()
884 if (ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES256_GCM) { in decode_encrypt_ctx()
888 } else if (ctxt->Ciphers[0] == 0) { in decode_encrypt_ctx()
902 } else if ((ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES128_CCM) && in decode_encrypt_ctx()
[all …]
/linux/fs/smb/server/
H A Dsmb2pdu.c802 pneg_ctxt->Ciphers[0] = cipher_type; in build_encrypt_ctxt()
940 if (pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES128_GCM || in decode_encrypt_ctxt()
941 pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES128_CCM || in decode_encrypt_ctxt()
942 pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES256_CCM || in decode_encrypt_ctxt()
943 pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES256_GCM) { in decode_encrypt_ctxt()
945 pneg_ctxt->Ciphers[i]); in decode_encrypt_ctxt()
946 conn->cipher_type = pneg_ctxt->Ciphers[i]; in decode_encrypt_ctxt()
/linux/fs/smb/common/
H A Dsmb2pdu.h502 __le16 Ciphers[]; member