summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ntlm_crypto.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/ntlm_crypto.c b/src/ntlm_crypto.c
index 0b72084..4d7b055 100644
--- a/src/ntlm_crypto.c
+++ b/src/ntlm_crypto.c
@@ -787,10 +787,6 @@ int ntlm_seal(uint32_t flags,
struct ntlm_signseal_handle *h;
int ret;
- if (!(flags & NTLMSSP_NEGOTIATE_SEAL)) {
- return ENOTSUP;
- }
-
h = &state->send;
ret = RC4_UPDATE(h->seal_handle, message, output);
@@ -824,10 +820,6 @@ int ntlm_unseal(uint32_t flags,
struct ntlm_signseal_handle *h;
int ret;
- if (!(flags & NTLMSSP_NEGOTIATE_SEAL)) {
- return ENOTSUP;
- }
-
if (!state->ext_sec) {
h = &state->send;
} else {