pythongssapi / requests-gssapi

An authentication handler for using GSSAPI with Python Requests. Drop-in replacement for old requests-kerberos.
Other
32 stars 21 forks source link

Drop out of sequence detection (#38) #44

Closed michael-o closed 2 years ago

michael-o commented 2 years ago

SPNEGO over HTTP does not use any message wrapping, therefore requesting out of sequence detection doesn't make sense.

This fixes #38

jborean93 commented 2 years ago

Is it possible to add this change to https://github.com/pythongssapi/requests-gssapi/blob/main/HISTORY.rst. The use of out of sequence is mostly just because requests-kerberos (which this is a port of) requested this and the latter exposed a way to wrap messages for subsequent HTTP payloads for specific use cases. But you are right, having it here does not make sense.

michael-o commented 2 years ago

@jborean93 Done, have a look.