aboutsummaryrefslogtreecommitdiff
path: root/src/modules/extra/m_ssl_gnutls.cpp
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-11-301-4/+2
|\
| * Use gnutls_digest_get_id if supported by the GnuTLS library.Gravatar Sadie Powell2022-11-291-1/+4
| * Fix asserting when building against libstdc++ in debug mode.•••This code was safe as the pointer was never actually dereferenced but libstdc++ would assert on it anyway. Gravatar Sadie Powell2022-11-281-1/+1
* | More const correctness.Gravatar Sadie Powell2022-10-231-1/+1
* | Fix various cases of the &* being next to the name instead of type.Gravatar Sadie Powell2022-09-291-1/+1
* | Use auto in places where it is really obvious what the type is.Gravatar Sadie Powell2022-09-041-1/+1
* | Fix some warnings noticed by the readability-* clang-tidy checkers.Gravatar Sadie Powell2022-09-031-4/+4
* | Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-221-6/+6
* | Drop support for ancient unsupported versions of GnuTLS.Gravatar Sadie Powell2022-06-301-61/+3
* | Rewrite logging calls to use the new APIs.Gravatar Sadie Powell2022-05-011-6/+6
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-291-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-04-281-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-161-1/+1
|\|
| * GnuTLS DH parameters are optional from 3.6.0+ not 3.5.6+.Gravatar Sadie Powell2022-04-071-1/+1
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-21/+21
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-01-241-0/+16
|\|
| * Work around the deprecation of manual DH params in GnuTLS 3.5.6.•••As of this version specifying custom DH parameters is deprecated and should not be used. Instead, a default (secure) DH parameters will be used. Gravatar Sadie Powell2022-01-211-1/+17
| * Fix use of auto_ptr in the ssl_gnutls module on C++17 compilers.Gravatar Sadie Powell2021-11-041-12/+16
* | Always catch exceptions as a constant reference.Gravatar Sadie Powell2022-01-091-1/+1
* | Refactor CoreException and ModuleException.Gravatar Sadie Powell2022-01-071-4/+6
* | Promote ExtensionItem::ExtensibleType to a top level enum class.Gravatar Sadie Powell2021-12-231-2/+2
* | Replace some references to ssl with tls.Gravatar Sadie Powell2021-12-081-1/+1
* | Consistently use `!foo` instead of `foo == NULL`.Gravatar Sadie Powell2021-12-031-1/+1
* | Fix a bunch of cases where module types were not marked as final.Gravatar Sadie Powell2021-11-281-4/+5
* | Add a snomask flag for rehash messages.Gravatar Sadie Powell2021-11-281-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-10-141-12/+9
|\|
| * Make reading DNs more consistent across modules.•••- If the DN contains a new line character then replace it with a space instead of killing the entire DN in the ssl_gnutls and ssl_openssl modules. - Apply the same logic to ssl_mbedtls which previously did not handle spaces in DNs. Gravatar Sadie Powell2021-10-141-12/+9
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-13/+16
* | Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-09-231-13/+9
|\|
| * Send SSL profile reloading errors to snomask `a`.Gravatar Sadie Powell2021-09-221-1/+1
| * Add an API for checking if I/O hooks are ready or not.Gravatar Sadie Powell2021-09-221-13/+8
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-011-1/+1
|\|
| * Allow reloading SSL profiles on rehash.Gravatar Sadie Powell2021-06-241-2/+3
| * Add a log message to the SSL mods to remind users how to reload profiles.Gravatar Sadie Powell2021-06-241-0/+5
| * Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> Gravatar Josh Soref2021-06-211-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-06-181-39/+23
|\|
| * Clean up VerifyCertificate in the ssl_gnutls module.Gravatar Sadie Powell2021-06-141-39/+23
* | Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-17/+17
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-2/+2
|\|
| * Fix the Ubuntu package name for ssl_gnutls.Gravatar Sadie Powell2021-05-071-1/+1
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-1/+1
| * Update references to config fields which were renamed.Gravatar Sadie Powell2021-04-141-1/+1
* | Refactor the hex encoding function.Gravatar Sadie Powell2021-05-101-1/+1
* | Migrate IOHookProvider from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2021-04-091-8/+7
* | Default to rehashing TLS certificates on rehash.Gravatar Sadie Powell2021-04-081-1/+7
* | Refer to encryption as TLS instead of SSL in all messages.Gravatar Sadie Powell2021-04-081-7/+7
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-7/+4
* | Fix a ton of pedantic compiler warnings.Gravatar Sadie Powell2021-04-041-2/+2
* | Constify variables within loops.Gravatar Sadie Powell2021-04-011-1/+1