1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

libcli/smb: introduce struct smb3_encryption_capabilities

This will allow us to control the offered ciphers from the callers
later.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14512

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Stefan Metzmacher 2021-03-09 23:38:51 +01:00 committed by Jeremy Allison
parent c34b86a34e
commit c0868882c7

View File

@ -55,8 +55,14 @@ struct smb2_negotiate_context *smb2_negotiate_context_find(const struct smb2_neg
uint16_t type);
#define WINDOWS_CLIENT_PURE_SMB2_NEGPROT_INITIAL_CREDIT_ASK 31
struct smb3_encryption_capabilities {
#define SMB3_ENCRYTION_CAPABILITIES_MAX_ALGOS 2
uint16_t num_algos;
uint16_t algos[SMB3_ENCRYTION_CAPABILITIES_MAX_ALGOS];
};
struct smb311_capabilities {
uint8_t dummy;
struct smb3_encryption_capabilities encryption;
};
#endif /* _LIBCLI_SMB_SMB2_NEGOTIATE_BLOB_H_ */