Skip to content

v2.0.0

Latest
Compare
Choose a tag to compare
@jborean93 jborean93 released this 21 Feb 01:58
· 1 commit to master since this release
c4cc391

2.0.0 - 2022-02-21

  • Use pyspnego for managing the CredSSP exchange
  • Removed the deps of pyOpenSSl and pyasn1 as pyspnego does all the work there
  • Added wrap_winrm and unwrap_winrm to unify the WinRM message encryption code into the one location

Breaking Changes

  • Removed the deprecated properties and methods on the HttpCredSSPAuth class:
    • tls_context - no longer available
    • tls_connection - use auth.contexts[hostname].tls_connection
    • cipher_negotiated - use auth.contexts[hostname].tls_connection.cipher()[0]
    • wrap() - use auth.contexts[hostname].wrap()
    • unwrap() - use auth.contexts[hostname].unwrap()
  • These properties and methods were removed in favour of credssp_auth.contexts[hostname].tls_context and so on.