summaryrefslogtreecommitdiff
path: root/lib
Commit message (Expand)AuthorAgeFilesLines
* gnutls_priority_init2,gnutls_set_default_priority_append: introducedNikos Mavrogiannopoulos2018-07-093-7/+145
* configure: added option --enable-tls13-supportNikos Mavrogiannopoulos2018-07-072-1/+4
* _gnutls_figure_common_ciphersuite: apply rfc7919 requirements only under TLS1.2Nikos Mavrogiannopoulos2018-07-071-1/+1
* supported_versions: do not parse in server side when TLS1.3 is disabledNikos Mavrogiannopoulos2018-07-071-1/+9
* protocols: bumped TLS1.3 protocol to draft-28Nikos Mavrogiannopoulos2018-07-071-1/+1
* sign_supports_cert_pk_algorithm: corrected check for RSAE-PSSNikos Mavrogiannopoulos2018-07-021-1/+1
* gnutls_aead_cipher_encryptv: eliminate signed/unsigned warnings under x86Nikos Mavrogiannopoulos2018-07-021-6/+6
* accelerated: error on the cases where the nettle API would have erroredNikos Mavrogiannopoulos2018-07-027-9/+94
* gnutls_cipher_add_auth: propagate error codesNikos Mavrogiannopoulos2018-07-021-3/+1
* post-handshake: return GNUTLS_E_GOT_APPLICATION_DATA as documented toNikos Mavrogiannopoulos2018-07-022-4/+16
* tls13 handshake: allow certificate messages after handshakeNikos Mavrogiannopoulos2018-07-024-6/+19
* gnutls_session_get_flags: introduced GNUTLS_SFLAGS_POST_HANDSHAKE_AUTHNikos Mavrogiannopoulos2018-07-023-2/+8
* tests: verify whether GNUTLS_TLS_VERSION_MAX is negotiated on default modeNikos Mavrogiannopoulos2018-06-291-1/+2
* key update: corrected generation of keysNikos Mavrogiannopoulos2018-06-273-10/+10
* lib/nettle/gost: support building with mini-nettle/mini-gmpDmitry Eremin-Solenikov2018-06-262-2/+2
* wrap_nettle_pk_generate_keys: retry on provable key generationtmp-fix-fips-generationNikos Mavrogiannopoulos2018-06-261-3/+12
* gnutls_session_get_desc: fixed desc printing of custom groupsNikos Mavrogiannopoulos2018-06-261-2/+5
* aarch64: use getauxval() if available to discover cpu capstmp-aarch64Nikos Mavrogiannopoulos2018-06-241-34/+35
* Support key matching with GOST keysDmitry Eremin-Solenikov2018-06-231-1/+11
* Use GOST R 34.11-94 when generating key for PKCS data to be encrypted with GO...Dmitry Eremin-Solenikov2018-06-231-7/+34
* Support GOST private keys generationDmitry Eremin-Solenikov2018-06-232-0/+42
* Add several DN entry definitions used by qualified GOST signaturesDmitry Eremin-Solenikov2018-06-231-0/+8
* Add support for PKCS12 files using GOST MACDmitry Eremin-Solenikov2018-06-231-12/+116
* Add support for PBES2/PBKDF2 using GOST algorithmsDmitry Eremin-Solenikov2018-06-235-32/+233
* Support PKCS#12 key derivation with GOST digestsDmitry Eremin-Solenikov2018-06-231-0/+5
* Add support for importing/exporting GOST private keysDmitry Eremin-Solenikov2018-06-239-0/+563
* Support importing/exporting X.509 GOST public keysDmitry Eremin-Solenikov2018-06-239-0/+633
* Add ASN.1 definitions for GOST keysDmitry Eremin-Solenikov2018-06-232-1/+17
* nettle: add support for GOST 34.10 public keysDmitry Eremin-Solenikov2018-06-231-1/+379
* Add few functions to support basic operations with GOST public keysDmitry Eremin-Solenikov2018-06-239-0/+313
* Add declarations for GOST R 34.10 signaturesDmitry Eremin-Solenikov2018-06-233-6/+31
* Define GOST R 34.10 curvesDmitry Eremin-Solenikov2018-06-233-2/+91
* Add declarations to support GOST public keysDmitry Eremin-Solenikov2018-06-237-5/+52
* Add support for I/O of little-endian MPIDmitry Eremin-Solenikov2018-06-234-13/+82
* nettle: add support for unsigned LE MPIsDmitry Eremin-Solenikov2018-06-231-2/+18
* nettle: add support for GOST 34.11 hash functionsDmitry Eremin-Solenikov2018-06-231-0/+71
* nettle: support GOST28147-89 in CFB modeDmitry Eremin-Solenikov2018-06-231-0/+127
* Add declarations for GOST 28147-89 cipher in CFB modeDmitry Eremin-Solenikov2018-06-232-1/+46
* Add declarations for GOST R 34.11 (-94 and -2012) digest algorithmsDmitry Eremin-Solenikov2018-06-233-1/+42
* Import GOST-supporting part from Nettle pending patchesDmitry Eremin-Solenikov2018-06-2334-0/+10202
* _gnutls_parse_hello_extensions: enforce that pre-shared-key extension is lastNikos Mavrogiannopoulos2018-06-223-4/+16
* extensions: corrected order of pre-shared-key and dumbfwNikos Mavrogiannopoulos2018-06-221-3/+2
* tests: updated supplemental tests for TLS1.3tmp-supplemental-no-tls13Nikos Mavrogiannopoulos2018-06-211-0/+1
* gnutls_supplemental_register: disable TLS 1.3 globallyNikos Mavrogiannopoulos2018-06-213-1/+13
* gnutls_session_supplemental_register: disable TLS1.3 when setNikos Mavrogiannopoulos2018-06-213-1/+13
* document new behavior on safe padding removaltmp-safe-padding-removal-made-optionalNikos Mavrogiannopoulos2018-06-201-0/+4
* record: fail with invalid request when attempting to send no pad and no dataNikos Mavrogiannopoulos2018-06-201-1/+1
* cipher: made TLS1.3 safe padding check optionalNikos Mavrogiannopoulos2018-06-202-2/+10
* gnutls_session_get_id: document restrictionsNikos Mavrogiannopoulos2018-06-201-0/+12
* aarch64: update elf files to correspond to the macosx versionNikos Mavrogiannopoulos2018-06-195-74/+1796