14
0

- update to 0.9.0:

* Added the `spnego.ContextReq.dce_style` flag to enable DCE
    authentication mode
  * The value for `spnego.iov.BufferType.sign_only` on SSPI has
    changed from representing `SECBUFFER_MECHLIST` to
    `SECBUFFER_READONLY_WITH_CHECKSUM`
  * Added the IOV buffer type
    `spnego.iov.BufferType.data_readonly`
  * Added limited support for `wrap_iov` and `unwrap_iov` in the
    Python NTLM context provider.
  * Added the `query_message_sizes()` function on a context to
    retrieve the important message sizes
    Currently this only contains the size of the message
    `header`, also known as the signature or security trailer
  * Added the `spnego.ContextReq.no_integrity` flag to disable
    integrity/confidentiality on Kerberos/Negotiate contexts
  * Added optional kwargs to `step()` on a security context
    `channel_bindings`
  * Added support for decoding the following TLS payloads with
    `python -m spnego --token ...`
          * Client Hello
          * Server Hello
          * Certificate
          * Server Key Exchange
          * Client Key Exchange
          * Certificate Request
  * Added the `new_context()` method on the context proxies to
    provide an easy and efficient way to re-use the context
    credentials and options for a new context
  * Removed use of `gssntlmssp` to simplify codebase and ensure a

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyspnego?expand=0&rev=23
This commit is contained in:
2023-05-10 07:05:37 +00:00
committed by Git OBS Bridge
parent 9daa847c76
commit 8454540d22
4 changed files with 41 additions and 4 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:72f7a6d7831326b571cef69869da87c474b437049aef79908b344a842d33de69
size 237654

3
pyspnego-0.9.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a8b4c0b40b2ef2f6a233503dd700944f8d452ad48e3301cca13b617b87bfee11
size 270641

View File

@@ -1,3 +1,40 @@
-------------------------------------------------------------------
Wed May 10 07:03:54 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.9.0:
* Added the `spnego.ContextReq.dce_style` flag to enable DCE
authentication mode
* The value for `spnego.iov.BufferType.sign_only` on SSPI has
changed from representing `SECBUFFER_MECHLIST` to
`SECBUFFER_READONLY_WITH_CHECKSUM`
* Added the IOV buffer type
`spnego.iov.BufferType.data_readonly`
* Added limited support for `wrap_iov` and `unwrap_iov` in the
Python NTLM context provider.
* Added the `query_message_sizes()` function on a context to
retrieve the important message sizes
Currently this only contains the size of the message
`header`, also known as the signature or security trailer
* Added the `spnego.ContextReq.no_integrity` flag to disable
integrity/confidentiality on Kerberos/Negotiate contexts
* Added optional kwargs to `step()` on a security context
`channel_bindings`
* Added support for decoding the following TLS payloads with
`python -m spnego --token ...`
* Client Hello
* Server Hello
* Certificate
* Server Key Exchange
* Client Key Exchange
* Certificate Request
* Added the `new_context()` method on the context proxies to
provide an easy and efficient way to re-use the context
credentials and options for a new context
* Removed use of `gssntlmssp` to simplify codebase and ensure a
consistent experience across OS versions
* Using NTLM on a non-Windows system will use the Python NTLM
implementation instead
-------------------------------------------------------------------
Tue May 9 13:49:10 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>

View File

@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-pyspnego
Version: 0.6.3
Version: 0.9.0
Release: 0
Summary: Python SPNEGO authentication library
License: MIT