Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | add blake2b/blake2s support for hmac (#3873) | Paul Kehrer | 2017-08-22 | 3 | -5/+35 | |
| | | | | | | | | | | * add blake2b/blake2s support for hmac This was a bug, but it turns out the noise protocol suggests using the HMAC construction with BLAKE2 (rather than BLAKE2's own keyed functionality) for a few reasons, so we should support it. * actually test the thing | |||||
* | Remove branches for 1.0.2 betas. (#3870) | Alex Gaynor | 2017-08-20 | 3 | -8/+6 | |
| | | | There's no sense in which we actually support them | |||||
* | Fix `load_rsa_public_numbers` documentation (#3871) | David Sanders | 2017-08-20 | 1 | -1/+1 | |
| | ||||||
* | Fix mistake in `RSAPublicKey.verify` documentation (#3872) | David Sanders | 2017-08-20 | 1 | -1/+1 | |
| | ||||||
* | add test vector with invalid basicconstraints (#3866) | Paul Kehrer | 2017-08-15 | 3 | -0/+38 | |
| | | | | | | * add test vector with invalid basicconstraints * sigh | |||||
* | Get our travis from pypy (#3865) | Alex Gaynor | 2017-08-14 | 3 | -15/+14 | |
| | | | | | | * Get our travis from pypy * doh | |||||
* | add changelog and a warning for is_signature_valid on crl (#3861) | Paul Kehrer | 2017-08-12 | 2 | -0/+8 | |
| | | | | | | * add changelog and a warning * document this properly | |||||
* | Add is_signature_valid method on CertificateRevocationList (#3849) | Vincent Pelletier | 2017-08-12 | 7 | -0/+130 | |
| | ||||||
* | bump pytest version (#3860) | Alex Gaynor | 2017-08-10 | 1 | -1/+1 | |
| | ||||||
* | Fixes #3821 -- improve output during release.py (#3848) | Alex Gaynor | 2017-08-04 | 1 | -7/+2 | |
| | | | This should cause stdout/stderr for command we run to be displayed, and also print which commands we're running | |||||
* | fixed a typo (#3847) | Alex Gaynor | 2017-08-03 | 1 | -1/+1 | |
| | ||||||
* | (mostly) revert wheel builder config change (#3846) | Paul Kehrer | 2017-08-03 | 1 | -4/+1 | |
| | | | | | | | | * Revert "Remve outdated comment and linewrap (#3838)" This reverts commit 990d7596ca5d8dfa1d9331cdcb072fabf9d10fca. * remove the outdated comment | |||||
* | port 2.0.3 changelog (#3845) | Paul Kehrer | 2017-08-03 | 1 | -0/+9 | |
| | ||||||
* | Fix weak linking of getentropy when compiling on older macOS (#3841) | Paul Kehrer | 2017-08-03 | 1 | -0/+3 | |
| | | | | | | | | | | | | | * Fix weak linking of getentropy when compiling on older macOS We use weak linking in macOS to determine if the getentropy symbol is available. However, to do that we need to have a declaration that states the function is __attribute((weak_import)) at compile time. On macOS 10.12 this is provided in sys/random.h, but on older macOS the declaration doesn't exist at all, so we need to forward declare it ourselves. * update a comment and a style nit | |||||
* | Make changelog anchors stable ids (#3840) | Christian Heimes | 2017-08-03 | 1 | -0/+165 | |
| | | | | | Closes: #3839 Signed-off-by: Christian Heimes <christian@python.org> | |||||
* | Remve outdated comment and linewrap (#3838) | Alex Gaynor | 2017-08-03 | 1 | -2/+4 | |
| | ||||||
* | deprecate unicode input for RFC822Name (#3836) | Paul Kehrer | 2017-08-01 | 5 | -41/+108 | |
| | | | | | | * deprecate unicode input for RFC822Name * pep8...? | |||||
* | deprecate auto-idna on UniformResourceIdentifier (#3832) | Paul Kehrer | 2017-08-01 | 6 | -162/+273 | |
| | | | | | | | | | | * deprecate auto-idna on UniformResourceIdentifier * fix repr test * docs * some updated language | |||||
* | Blacklist pytest 3.2.0 because it breaks us (#3835) | Alex Gaynor | 2017-08-01 | 1 | -1/+1 | |
| | | | See upstream: https://github.com/pytest-dev/pytest/issues/2644 | |||||
* | note version added and deprecated for bytes_value/value on DNSName (#3833) | Paul Kehrer | 2017-08-01 | 1 | -0/+4 | |
| | ||||||
* | Begin the deprecation of auto-idna for x509.DNSName (#3830) | Alex Gaynor | 2017-07-30 | 11 | -164/+281 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Begin the deprecation of auto-idna for x509.DNSName Refs #3357 * fix warning * py3k fixes * fix docs * sigh * flake8 * these are words * words * tests for coverage * another test * do idna things * more idna things | |||||
* | fix for latest flake8 (#3829) | Alex Gaynor | 2017-07-27 | 1 | -1/+1 | |
| | ||||||
* | port 2.0.2 changelog (#3828) | Paul Kehrer | 2017-07-27 | 1 | -0/+6 | |
| | ||||||
* | don't re-export the openssl symbols from our shared object (#3825) | Paul Kehrer | 2017-07-26 | 1 | -1/+1 | |
| | | | | | When linking the static lib we want the symbols to not be exported. To convince gcc to do this you must pass -Wl,--exclude-libs,ALL in CFLAGS More info at https://stackoverflow.com/questions/2222162 | |||||
* | port 2.0.1 changelog (#3823) | Paul Kehrer | 2017-07-26 | 1 | -0/+10 | |
| | ||||||
* | fix compilation on openbsd (#3814) | Paul Kehrer | 2017-07-26 | 1 | -0/+2 | |
| | | | | the getentropy fallback is only possible on macOS, wrap it in a define to remove it entirely on the BSDs. | |||||
* | fixed #3780 -- test on the latest libressl (#3813) | Alex Gaynor | 2017-07-26 | 1 | -0/+5 | |
| | ||||||
* | update wheel builder script for static linking on linux (#3811) | Paul Kehrer | 2017-07-25 | 1 | -2/+1 | |
| | | | | We don't need to do an LD_LIBRARY_PATH when calling auditwheel because we're now statically linking OpenSSL. | |||||
* | Fixed #3520 -- added a github issue template for bugs (#3807) | Alex Gaynor | 2017-07-24 | 1 | -0/+14 | |
| | | | | | | | | * Fixed #3520 -- added a github issue template for bugs * grammar * empty commit to retrigger jenkins | |||||
* | Refs #3646 -- Don't use shell globbing in our release script (#3809) | Alex Gaynor | 2017-07-24 | 1 | -3/+5 | |
| | ||||||
* | fix wheel building with parameters (#3808) | Paul Kehrer | 2017-07-23 | 1 | -1/+1 | |
| | ||||||
* | simplify setup.py branches (#3806) | Alex Gaynor | 2017-07-22 | 1 | -3/+1 | |
| | ||||||
* | simplify pyenchant requirement (#3805) | Alex Gaynor | 2017-07-21 | 1 | -1/+1 | |
| | ||||||
* | Fixed #3798 -- use the correct stacklevel on this warning (#3803) | Alex Gaynor | 2017-07-21 | 1 | -1/+1 | |
| | ||||||
* | Fixed #3801 -- don't create py33 wheels (#3802) | Alex Gaynor | 2017-07-20 | 1 | -3/+2 | |
| | ||||||
* | remove deprecated items (#3794) | Paul Kehrer | 2017-07-20 | 11 | -208/+9 | |
| | | | | | | | | | | * remove deprecated items whirlpool, ripemd160, unsupportedextension, and the old interfaces * flake8 and remove a test generator we no longe use * make it clear we warned you about these things | |||||
* | Blacklist some pyenchant versions (#3799) | Alex Gaynor | 2017-07-20 | 1 | -1/+1 | |
| | ||||||
* | Updating doing a release to have a correct path (#3790) | Alex Gaynor | 2017-07-17 | 1 | -1/+1 | |
| | ||||||
* | Refs #3646 -- invoke twine correctly (#3789) | Alex Gaynor | 2017-07-17 | 1 | -1/+1 | |
| | ||||||
* | Open master for 2.1 (#3788) | Alex Gaynor | 2017-07-17 | 3 | -2/+7 | |
| | ||||||
* | 2.0 version bump and changelog (#3787) | Paul Kehrer | 2017-07-17 | 3 | -6/+4 | |
| | | | | | | * 2.0 version bump and changelog * dates are just an illusion | |||||
* | update docs to reflect #3364 (#3786) | Paul Kehrer | 2017-07-17 | 1 | -1/+1 | |
| | ||||||
* | Remove DH generator size constraint (#3364) | mtury | 2017-07-17 | 2 | -3/+3 | |
| | | | | | | * Remove DH generator size constraint * Check that g > 1 | |||||
* | add AESGCM AEAD support (#3785) | Paul Kehrer | 2017-07-17 | 6 | -4/+207 | |
| | | | | | | | | * add AESGCM AEAD support * remove stray newline * move AESGCM docs above CCM | |||||
* | move tag_length to the AESCCM constructor (#3783) | Paul Kehrer | 2017-07-16 | 3 | -45/+41 | |
| | | | | | | * move tag_length to the AESCCM constructor * review feedback | |||||
* | AESCCM support (#3700) | Paul Kehrer | 2017-07-16 | 5 | -15/+351 | |
| | ||||||
* | Fixed #3777 -- document an additional dependency (#3779) | Alex Gaynor | 2017-07-14 | 1 | -1/+2 | |
| | ||||||
* | fedora comes with a py36 now (#3781) | Alex Gaynor | 2017-07-13 | 1 | -1/+1 | |
| | ||||||
* | allow p % 24 == 23 when generator == 2 in DH_check (#3768) | Paul Kehrer | 2017-07-09 | 3 | -3/+42 | |
| | | | | | | | | | | * allow p % 24 == 23 when generator == 2 in DH_check * short url * update and expand comments * even better language! | |||||
* | use an instance in aead_cipher_supported (#3772) | Paul Kehrer | 2017-07-09 | 4 | -25/+28 | |
| | | | | | | | | * use an instance in aead_cipher_supported * test for chacha20poly1305 compatibility via init exception * pep8 |