forked from pool/python-cryptography
		
	update to upstream release 1.2.1 (needs python-cffi 1.4.1+, see also request #352713) OBS-URL: https://build.opensuse.org/request/show/352716 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cryptography?expand=0&rev=30
		
			
				
	
	
		
			432 lines
		
	
	
		
			22 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			432 lines
		
	
	
		
			22 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
-------------------------------------------------------------------
 | 
						|
Sat Jan  9 16:58:46 UTC 2016 - michael@stroeder.com
 | 
						|
 | 
						|
- update to upstream release 1.2.1
 | 
						|
 | 
						|
  1.2.1 - 2016-01-08
 | 
						|
  * Reverts a change to an OpenSSL EVP_PKEY object that caused
 | 
						|
    errors with pyOpenSSL.
 | 
						|
  1.2 - 2016-01-08
 | 
						|
  * BACKWARDS INCOMPATIBLE: RevokedCertificate extensions now
 | 
						|
    uses extension classes rather than returning raw values
 | 
						|
    inside the Extension value. The new classes are:
 | 
						|
        o CertificateIssuer
 | 
						|
        o CRLReason
 | 
						|
        o InvalidityDate
 | 
						|
  * Deprecated support for OpenSSL 0.9.8 and 1.0.0. At this time
 | 
						|
    there is no time table for actually dropping support,
 | 
						|
    however we strongly encourage all users to upgrade, as those
 | 
						|
    versions no longer receive support from the OpenSSL project.
 | 
						|
  * The Certificate class now has signature and
 | 
						|
    tbs_certificate_bytes attributes.
 | 
						|
  * The CertificateSigningRequest class now has signature and
 | 
						|
    tbs_certrequest_bytes attributes.
 | 
						|
  * The CertificateRevocationList class now has signature and
 | 
						|
    tbs_certlist_bytes attributes.
 | 
						|
  * NameConstraints are now supported in the CertificateBuilder
 | 
						|
    and CertificateSigningRequestBuilder.
 | 
						|
  * Support serialization of certificate revocation lists using
 | 
						|
    the public_bytes() method of CertificateRevocationList.
 | 
						|
  * Add support for parsing CertificateRevocationList extensions
 | 
						|
    () in the OpenSSL backend. The following extensions are
 | 
						|
    currently supported:
 | 
						|
        o AuthorityInformationAccess
 | 
						|
        o AuthorityKeyIdentifier
 | 
						|
        o CRLNumber
 | 
						|
        o IssuerAlternativeName
 | 
						|
  * Added CertificateRevocationListBuilder and
 | 
						|
    RevokedCertificateBuilder to allow creation of CRLs.
 | 
						|
  * Unrecognized non-critical X.509 extensions are now parsed
 | 
						|
    into an UnrecognizedExtension object.
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Wed Dec 30 12:41:26 UTC 2015 - michael@stroeder.com
 | 
						|
 | 
						|
- update to 1.1.2:
 | 
						|
  * Fixed a SIGBUS crash with the OS X wheels caused by redefinition of a
 | 
						|
    method.
 | 
						|
  * Fixed a runtime error ``undefined symbol EC_GFp_nistp224_method`` that
 | 
						|
    occurred with some OpenSSL installations.
 | 
						|
  * Updated Windows and OS X wheels to be compiled against OpenSSL 1.0.2e.
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Wed Dec  9 10:35:20 UTC 2015 - dmueller@suse.com
 | 
						|
 | 
						|
- update to 1.1.1:
 | 
						|
  * Fixed several small bugs related to compiling the OpenSSL bindings with
 | 
						|
    unusual OpenSSL configurations.
 | 
						|
  * Resolved an issue where, depending on the method of installation and
 | 
						|
    which Python interpreter they were using, users on El Capitan (OS X 10.11)
 | 
						|
    may have seen an ``InternalError`` on import.
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Wed Dec  9 10:19:45 UTC 2015 - dmueller@suse.com
 | 
						|
 | 
						|
- fix build for sle11 (disable testsuite as it depends on python-hypothesis
 | 
						|
  which is not available for sle11 anymore)
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Tue Nov 10 04:16:13 UTC 2015 - tbechtold@suse.com
 | 
						|
 | 
						|
- update to 1.1:
 | 
						|
  * Added support for Elliptic Curve Diffie-Hellman with
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.ECDH`.
 | 
						|
  * Added :class:`~cryptography.hazmat.primitives.kdf.x963kdf.X963KDF`.
 | 
						|
  * Added support for parsing certificate revocation lists (CRLs) using
 | 
						|
    :func:`~cryptography.x509.load_pem_x509_crl` and
 | 
						|
    :func:`~cryptography.x509.load_der_x509_crl`.
 | 
						|
  * Add support for AES key wrapping with
 | 
						|
    :func:`~cryptography.hazmat.primitives.keywrap.aes_key_wrap` and
 | 
						|
    :func:`~cryptography.hazmat.primitives.keywrap.aes_key_unwrap`.
 | 
						|
  * Added a ``__hash__`` method to :class:`~cryptography.x509.Name`.
 | 
						|
  * Add support for encoding and decoding elliptic curve points to a byte string
 | 
						|
    form using
 | 
						|
    :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicNumbers.encode_point`
 | 
						|
    and
 | 
						|
    :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicNumbers.from_encoded_point`.
 | 
						|
  * Added :meth:`~cryptography.x509.Extensions.get_extension_for_class`.
 | 
						|
  * :class:`~cryptography.x509.CertificatePolicies` are now supported in the
 | 
						|
    :class:`~cryptography.x509.CertificateBuilder`.
 | 
						|
  * ``countryName`` is now encoded as a ``PrintableString`` when creating subject
 | 
						|
    and issuer distinguished names with the Certificate and CSR builder classes.
 | 
						|
  * **SECURITY ISSUE**: The OpenSSL backend prior to 1.0.2 made extensive use
 | 
						|
    of assertions to check response codes where our tests could not trigger a
 | 
						|
    failure.  However, when Python is run with ``-O`` these asserts are optimized
 | 
						|
    away.  If a user ran Python with this flag and got an invalid response code
 | 
						|
    this could result in undefined behavior or worse. Accordingly, all response
 | 
						|
    checks from the OpenSSL backend have been converted from ``assert``
 | 
						|
    to a true function call. Credit **Emilia Käsper (Google Security Team)**
 | 
						|
    for the report.
 | 
						|
  * We now ship OS X wheels that statically link OpenSSL by default. When
 | 
						|
    installing a wheel on OS X 10.10+ (and using a Python compiled against the
 | 
						|
    10.10 SDK) users will no longer need to compile. See :doc:`/installation` for
 | 
						|
    alternate installation methods if required.
 | 
						|
  * Set the default string mask to UTF-8 in the OpenSSL backend to resolve
 | 
						|
    character encoding issues with older versions of OpenSSL.
 | 
						|
  * Several new OpenSSL bindings have been added to support a future pyOpenSSL
 | 
						|
    release.
 | 
						|
  * Raise an error during install on PyPy < 2.6. 1.0+ requires PyPy 2.6+.
 | 
						|
- Remove 2293.patch . Applied in a different way upstream.
 | 
						|
- Add BuildRequires for python-hypothesis and python-pyasn1-modules for running
 | 
						|
  unittests
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Wed Sep 30 12:01:27 UTC 2015 - dmueller@suse.com
 | 
						|
 | 
						|
- require the cffi version it was built against to avoid (bsc#948198)
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Tue Sep 29 13:54:24 UTC 2015 - tbechtold@suse.com
 | 
						|
 | 
						|
- Add 2293.patch for "osrandom engine already registered" (bnc#947679)
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Thu Sep 17 13:11:06 UTC 2015 - tbechtold@suse.com
 | 
						|
 | 
						|
- Add disable-uneven-sizes-tests.patch (bnc#944204)
 | 
						|
  openssl in SLE12SP1 doesn't allow uneven bit sizes for rsa keys
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Sat Aug 22 10:30:08 UTC 2015 - tbechtold@suse.com
 | 
						|
 | 
						|
- update to 1.0 (fate#318838):
 | 
						|
  * Switched to the new `cffi`_ ``set_source`` out-of-line API mode for
 | 
						|
    compilation. This results in significantly faster imports and lowered
 | 
						|
    memory consumption. Due to this change we no longer support PyPy releases
 | 
						|
    older than 2.6 nor do we support any released version of PyPy3 (until a
 | 
						|
    version supporting cffi 1.0 comes out).
 | 
						|
  * Fix parsing of OpenSSH public keys that have spaces in comments.
 | 
						|
  * Support serialization of certificate signing requests using the
 | 
						|
    ``public_bytes`` method of
 | 
						|
    :class:`~cryptography.x509.CertificateSigningRequest`.
 | 
						|
  * Support serialization of certificates using the ``public_bytes`` method of
 | 
						|
    :class:`~cryptography.x509.Certificate`.
 | 
						|
  * Add ``get_provisioning_uri`` method to
 | 
						|
    :class:`~cryptography.hazmat.primitives.twofactor.hotp.HOTP` and
 | 
						|
    :class:`~cryptography.hazmat.primitives.twofactor.totp.TOTP` for generating
 | 
						|
    provisioning URIs.
 | 
						|
  * Add :class:`~cryptography.hazmat.primitives.kdf.concatkdf.ConcatKDFHash`
 | 
						|
    and :class:`~cryptography.hazmat.primitives.kdf.concatkdf.ConcatKDFHMAC`.
 | 
						|
  * Raise a ``TypeError`` when passing objects that are not text as the value to
 | 
						|
    :class:`~cryptography.x509.NameAttribute`.
 | 
						|
  * Add support for :class:`~cryptography.x509.OtherName` as a general name
 | 
						|
    type.
 | 
						|
  * Added new X.509 extension support in :class:`~cryptography.x509.Certificate`
 | 
						|
    The following new extensions are now supported:
 | 
						|
 | 
						|
    * :class:`~cryptography.x509.OCSPNoCheck`
 | 
						|
    * :class:`~cryptography.x509.InhibitAnyPolicy`
 | 
						|
    * :class:`~cryptography.x509.IssuerAlternativeName`
 | 
						|
    * :class:`~cryptography.x509.NameConstraints`
 | 
						|
 | 
						|
  * Extension support was added to
 | 
						|
    :class:`~cryptography.x509.CertificateSigningRequest`.
 | 
						|
  * Add support for creating signed certificates with
 | 
						|
    :class:`~cryptography.x509.CertificateBuilder`. This includes support for
 | 
						|
    the following extensions:
 | 
						|
 | 
						|
    * :class:`~cryptography.x509.BasicConstraints`
 | 
						|
    * :class:`~cryptography.x509.SubjectAlternativeName`
 | 
						|
    * :class:`~cryptography.x509.KeyUsage`
 | 
						|
    * :class:`~cryptography.x509.ExtendedKeyUsage`
 | 
						|
    * :class:`~cryptography.x509.SubjectKeyIdentifier`
 | 
						|
    * :class:`~cryptography.x509.AuthorityKeyIdentifier`
 | 
						|
    * :class:`~cryptography.x509.AuthorityInformationAccess`
 | 
						|
    * :class:`~cryptography.x509.CRLDistributionPoints`
 | 
						|
    * :class:`~cryptography.x509.InhibitAnyPolicy`
 | 
						|
    * :class:`~cryptography.x509.IssuerAlternativeName`
 | 
						|
    * :class:`~cryptography.x509.OCSPNoCheck`
 | 
						|
 | 
						|
  * Add support for creating certificate signing requests with
 | 
						|
    :class:`~cryptography.x509.CertificateSigningRequestBuilder`. This includes
 | 
						|
    support for the same extensions supported in the ``CertificateBuilder``.
 | 
						|
  * Deprecate ``encode_rfc6979_signature`` and ``decode_rfc6979_signature`` in
 | 
						|
    favor of
 | 
						|
    :func:`~cryptography.hazmat.primitives.asymmetric.utils.encode_dss_signature`
 | 
						|
    and
 | 
						|
    :func:`~cryptography.hazmat.primitives.asymmetric.utils.decode_dss_signature`.
 | 
						|
- Adjust Requires according to requires.txt
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Wed Jul 29 18:05:55 UTC 2015 - tbechtold@suse.com
 | 
						|
 | 
						|
- update to 0.9.3:
 | 
						|
  * Updated Windows wheels to be compiled against OpenSSL 1.0.2d.
 | 
						|
  * Updated Windows wheels to be compiled against OpenSSL 1.0.2c.
 | 
						|
  * **SECURITY ISSUE**: Fixed a double free in the OpenSSL backend when using DSA
 | 
						|
   to verify signatures. Note that this only affects PyPy 2.6.0 and (presently
 | 
						|
   unreleased) CFFI versions greater than 1.1.0.
 | 
						|
  * Removed support for Python 3.2. This version of Python is rarely used
 | 
						|
    and caused support headaches. Users affected by this should upgrade to 3.3+.
 | 
						|
  * Deprecated support for Python 2.6. At the time there is no time table for
 | 
						|
    actually dropping support, however we strongly encourage all users to upgrade
 | 
						|
    their Python, as Python 2.6 no longer receives support from the Python core
 | 
						|
    team.
 | 
						|
  * Add support for the
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.SECP256K1` elliptic
 | 
						|
    curve.
 | 
						|
  * Fixed compilation when using an OpenSSL which was compiled with the
 | 
						|
    ``no-comp`` (``OPENSSL_NO_COMP``) option.
 | 
						|
  * Support :attr:`~cryptography.hazmat.primitives.serialization.Encoding.DER`
 | 
						|
    serialization of public keys using the ``public_bytes`` method of
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithSerialization`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKeyWithSerialization`,
 | 
						|
    and
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKeyWithSerialization`.
 | 
						|
  * Support :attr:`~cryptography.hazmat.primitives.serialization.Encoding.DER`
 | 
						|
    serialization of private keys using the ``private_bytes`` method of
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKeyWithSerialization`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithSerialization`,
 | 
						|
    and
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization`.
 | 
						|
  * Add support for parsing X.509 certificate signing requests (CSRs) with
 | 
						|
    :func:`~cryptography.x509.load_pem_x509_csr` and
 | 
						|
    :func:`~cryptography.x509.load_der_x509_csr`.
 | 
						|
  * Moved ``cryptography.exceptions.InvalidToken`` to
 | 
						|
    :class:`cryptography.hazmat.primitives.twofactor.InvalidToken` and deprecated
 | 
						|
    the old location. This was moved to minimize confusion between this exception
 | 
						|
    and :class:`cryptography.fernet.InvalidToken`.
 | 
						|
  * Added support for X.509 extensions in :class:`~cryptography.x509.Certificate`
 | 
						|
    objects. The following extensions are supported as of this release:
 | 
						|
 | 
						|
    * :class:`~cryptography.x509.BasicConstraints`
 | 
						|
    * :class:`~cryptography.x509.AuthorityKeyIdentifier`
 | 
						|
    * :class:`~cryptography.x509.SubjectKeyIdentifier`
 | 
						|
    * :class:`~cryptography.x509.KeyUsage`
 | 
						|
    * :class:`~cryptography.x509.SubjectAlternativeName`
 | 
						|
    * :class:`~cryptography.x509.ExtendedKeyUsage`
 | 
						|
    * :class:`~cryptography.x509.CRLDistributionPoints`
 | 
						|
    * :class:`~cryptography.x509.AuthorityInformationAccess`
 | 
						|
    * :class:`~cryptography.x509.CertificatePolicies`
 | 
						|
 | 
						|
    Note that unsupported extensions with the critical flag raise
 | 
						|
    :class:`~cryptography.x509.UnsupportedExtension` while unsupported extensions
 | 
						|
    set to non-critical are silently ignored. Read the
 | 
						|
    :doc:`X.509 documentation</x509>` for more information.
 | 
						|
- add python-pyasn1, python-ipaddress and python-idna as Requires/BuildRequires
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Thu Apr 23 06:38:42 UTC 2015 - mcihar@suse.cz
 | 
						|
 | 
						|
- Update to 0.8.2:
 | 
						|
  * Fixed a race condition when initializing the OpenSSL or CommonCrypto backends
 | 
						|
    in a multi-threaded scenario.
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Tue Apr  7 10:00:28 UTC 2015 - tbechtold@suse.com
 | 
						|
 | 
						|
- update to 0.8.1:
 | 
						|
  * Updated Windows wheels to be compiled against OpenSSL 1.0.2a.
 | 
						|
  * func:`~cryptography.hazmat.primitives.serialization.load_ssh_public_key` can
 | 
						|
    now load elliptic curve public keys.
 | 
						|
  * Added
 | 
						|
    :attr:`~cryptography.x509.Certificate.signature_hash_algorithm` support to
 | 
						|
    :class:`~cryptography.x509.Certificate`.
 | 
						|
  * Added
 | 
						|
    :func:`~cryptography.hazmat.primitives.asymmetric.rsa.rsa_recover_prime_factor  s`
 | 
						|
  * :class:`~cryptography.hazmat.primitives.kdf.KeyDerivationFunction` was moved
 | 
						|
    from :mod:`~cryptography.hazmat.primitives.interfaces` to
 | 
						|
    :mod:`~cryptography.hazmat.primitives.kdf`.
 | 
						|
  * Added support for parsing X.509 names. See the
 | 
						|
    :doc:`X.509 documentation</x509>` for more information.
 | 
						|
  * Added
 | 
						|
    :func:`~cryptography.hazmat.primitives.serialization.load_der_private_key` to
 | 
						|
    support loading of DER encoded private keys and
 | 
						|
    :func:`~cryptography.hazmat.primitives.serialization.load_der_public_key` to
 | 
						|
    support loading DER encoded public keys.
 | 
						|
  * Fixed building against LibreSSL, a compile-time substitute for OpenSSL.
 | 
						|
  * FreeBSD 9.2 was removed from the continuous integration system.
 | 
						|
  * Updated Windows wheels to be compiled against OpenSSL 1.0.2.
 | 
						|
  * :func:`~cryptography.hazmat.primitives.serialization.load_pem_public_key`
 | 
						|
    and :func:`~cryptography.hazmat.primitives.serialization.load_der_public_key`
 | 
						|
    now support PKCS1 RSA public keys (in addition to the previous support for
 | 
						|
    SubjectPublicKeyInfo format for RSA, EC, and DSA).
 | 
						|
  * Added
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization`
 | 
						|
    and deprecated
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithNumbers`.
 | 
						|
  * Added
 | 
						|
    :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization.private_bytes`
 | 
						|
    to
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization`.
 | 
						|
  * Added
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKeyWithSerialization`
 | 
						|
    and deprecated
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKeyWithNumbers`.
 | 
						|
  * Added
 | 
						|
    :meth:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKeyWithSerialization.private_bytes`
 | 
						|
    to
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKeyWithSerialization`.
 | 
						|
  * Added
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithSerialization`
 | 
						|
    and deprecated
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithNumbers`.
 | 
						|
  * Added
 | 
						|
    :meth:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithSerialization.private_bytes`
 | 
						|
    to
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithSerialization`.
 | 
						|
  * Added
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithSerialization`
 | 
						|
    and deprecated
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithNumbers`.
 | 
						|
  * Added
 | 
						|
    :meth:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithSerialization.public_bytes`
 | 
						|
    to
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithSerialization`.
 | 
						|
  * Added
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKeyWithSerialization`
 | 
						|
    and deprecated
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKeyWithNumbers`.
 | 
						|
  * Added
 | 
						|
    :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKeyWithSerialization.public_bytes`
 | 
						|
    to
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKeyWithSerialization`.
 | 
						|
  * Added
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKeyWithSerialization`
 | 
						|
    and deprecated
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKeyWithNumbers`.
 | 
						|
  * Added
 | 
						|
    :meth:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKeyWithSerialization.public_bytes`
 | 
						|
    to
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKeyWithSerialization`.
 | 
						|
  * :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` and
 | 
						|
    :class:`~cryptography.hazmat.primitives.hashes.HashContext` were moved from
 | 
						|
    :mod:`~cryptography.hazmat.primitives.interfaces` to
 | 
						|
    :mod:`~cryptography.hazmat.primitives.hashes`.
 | 
						|
  * :class:`~cryptography.hazmat.primitives.ciphers.CipherContext`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.ciphers.AEADCipherContext`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.ciphers.AEADEncryptionContext`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.ciphers.CipherAlgorithm`, and
 | 
						|
    :class:`~cryptography.hazmat.primitives.ciphers.BlockCipherAlgorithm`
 | 
						|
    were moved from :mod:`~cryptography.hazmat.primitives.interfaces` to
 | 
						|
    :mod:`~cryptography.hazmat.primitives.ciphers`.
 | 
						|
  * :class:`~cryptography.hazmat.primitives.ciphers.modes.Mode`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.ciphers.modes.ModeWithInitializationVector`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.ciphers.modes.ModeWithNonce`, and
 | 
						|
    :class:`~cryptography.hazmat.primitives.ciphers.modes.ModeWithAuthenticationTag`
 | 
						|
    were moved from :mod:`~cryptography.hazmat.primitives.interfaces` to
 | 
						|
    :mod:`~cryptography.hazmat.primitives.ciphers.modes`.
 | 
						|
  * :class:`~cryptography.hazmat.primitives.padding.PaddingContext` was moved
 | 
						|
    from :mod:`~cryptography.hazmat.primitives.interfaces` to
 | 
						|
    :mod:`~cryptography.hazmat.primitives.padding`.
 | 
						|
  *
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.padding.AsymmetricPadding`
 | 
						|
    was moved from :mod:`~cryptography.hazmat.primitives.interfaces` to
 | 
						|
    :mod:`~cryptography.hazmat.primitives.asymmetric.padding`.
 | 
						|
  *
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.AsymmetricSignatureContext`
 | 
						|
    and
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.AsymmetricVerificationContext`
 | 
						|
    were moved from :mod:`~cryptography.hazmat.primitives.interfaces` to
 | 
						|
    :mod:`~cryptography.hazmat.primitives.asymmetric`.
 | 
						|
  * :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAParameters`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAParametersWithNumbers`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithNumbers`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey` and
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKeyWithNumbers`
 | 
						|
    were moved from :mod:`~cryptography.hazmat.primitives.interfaces` to
 | 
						|
    :mod:`~cryptography.hazmat.primitives.asymmetric.dsa`
 | 
						|
  * :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurve`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurveSignatureAlgorithm`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithNumbers`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey`,
 | 
						|
    and
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKeyWithNumbers`
 | 
						|
    were moved from :mod:`~cryptography.hazmat.primitives.interfaces` to
 | 
						|
    :mod:`~cryptography.hazmat.primitives.asymmetric.ec`.
 | 
						|
  * :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKeyWithNumbers`,
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey` and
 | 
						|
    :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithNumbers`
 | 
						|
    were moved from :mod:`~cryptography.hazmat.primitives.interfaces` to
 | 
						|
    :mod:`~cryptography.hazmat.primitives.asymmetric.rsa`.
 | 
						|
  * Updated Windows wheels to be compiled against OpenSSL 1.0.1l.
 | 
						|
  * ``enum34`` is no longer installed on Python 3.4, where it is included in
 | 
						|
    the standard library.
 | 
						|
  * Added a new function to the OpenSSL bindings to support additional
 | 
						|
    functionality in pyOpenSSL.
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Mon Dec 29 18:08:34 UTC 2014 - jmatejek@suse.com
 | 
						|
 | 
						|
- update to 0.7.1
 | 
						|
    * backwards-incompatible change: GCM module doesn't truncate tags
 | 
						|
      by default anymore
 | 
						|
    * removed deprecated arguments to MFG1 constructor
 | 
						|
    * ECC support
 | 
						|
    * added PEM and openssh key loading convenience methods
 | 
						|
    * support for many new ciphers and new features of existing ones
 | 
						|
    see CHANGELOG.rst for details
 | 
						|
- spec cleanup
 | 
						|
- reworked %check section
 | 
						|
- added changelog to docs
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Mon May 19 16:14:52 UTC 2014 - jmatejek@suse.com
 | 
						|
 | 
						|
- update to 0.4
 | 
						|
    * added IDEA algorithm
 | 
						|
    * added HOTP, TOTP and CMAC primitives
 | 
						|
    * improved support for RSA and DSA public key cryptography
 | 
						|
- include cryptography_vectors as a source, in order to run the full
 | 
						|
  test suite (cryptography_vectors seems only useful for testing
 | 
						|
  this module, so it's probably not worth making a separate installable
 | 
						|
  package for it)
 | 
						|
- drop upstreamed cryptography-custom-install-cmd.patch
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Mon Mar 31 16:03:46 UTC 2014 - speilicke@suse.com
 | 
						|
 | 
						|
- Add cryptography-custom-install-cmd.patch: Fix installation to plat_lib
 | 
						|
- Properly invoke testsuite, therefore add dependencies on iso8601 and pretend
 | 
						|
- Only use pkg-config for libffi on newer distros, stay with old-style
 | 
						|
  devel package requires to fix SLE build
 | 
						|
 | 
						|
-------------------------------------------------------------------
 | 
						|
Mon Feb 24 12:43:32 UTC 2014 - mvyskocil@suse.com
 | 
						|
 | 
						|
- Initial packaging of python-cryptography for openSUSE 
 | 
						|
 |