aboutsummaryrefslogtreecommitdiff
path: root/src/modules/extra/m_ssl_gnutls.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-2/+2
* Allow using multiple SSL fingerprint algorithms.•••Closes #1804. Gravatar Sadie Powell2024-02-191-32/+42
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-11-141-3/+4
|\
| * Fix a crash on shutdown when using ssl_gnutls on some systems.Gravatar Sadie Powell2023-11-061-2/+4
* | Try to help users with outdated SSL module configs.Gravatar Sadie Powell2023-09-081-0/+8
* | Move TokenList back to its own header and move INSP_FORMAT to compat.•••This allows making stringutils an optional header given that most of it is not used by most of the codebase. Gravatar Sadie Powell2023-09-031-0/+1
* | Assume an empty <sslprofile:provider> means the current module.Gravatar Sadie Powell2023-08-151-2/+2
* | Update usages of stdalgo::string::equalsci to use insp::equalsci.Gravatar Sadie Powell2023-08-111-1/+2
* | Make config file cache invalidation more useful.Gravatar Sadie Powell2023-08-061-6/+1
* | Invalidate the file cache when reading SSL certs.•••This fixes reading the same file when the SSL certs are reloaded without a full rehash (e.g. via SIGUSR1 or /REHASH -ssl). This also reverts 8f0d732e38. Gravatar Sadie Powell2023-07-031-1/+6
* | Replace FileReader with something more sensible.Gravatar Sadie Powell2023-07-031-6/+4
* | Implement support for SPKI fingerprints into the ssl_gnutls module.Gravatar Sadie Powell2023-06-111-1/+46
* | Rename duration to timeutils and relocate InspIRCd::TimeString.Gravatar Sadie Powell2023-05-101-3/+3
* | Show more details about unactivated/expired client certificates.Gravatar Sadie Powell2023-05-101-2/+7
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-281-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2023-04-281-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-271-4/+19
|\|
| * Add client cert activation/expiration times to the ssl_cert class.Gravatar Sadie Powell2023-03-011-4/+19
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-251-0/+1
|\|
| * Fix PackageInfo directives in extra modules.Gravatar Sadie Powell2023-01-191-0/+1
* | Replace getInt/getUInt/getFloat with type safe templated functions.Gravatar Sadie Powell2023-01-251-2/+2
* | Fix using (unsigned) long instead of (s)size_t.Gravatar Sadie Powell2023-01-241-1/+1
* | Convert log calls to use fmtlib format stringsGravatar Sadie Powell2023-01-241-4/+4
* | Log the versions of third-party libraries used by modules.Gravatar Sadie Powell2023-01-191-1/+3
* | Remove some more unnecessary things from the global headers.Gravatar Sadie Powell2023-01-141-0/+1
* | Qualify auto correctly in all cases.Gravatar Sadie Powell2023-01-101-2/+2
* | Avoid copying various shared_ptr usages when not necessary.Gravatar Sadie Powell2023-01-101-2/+2
* | Avoid copying shared_ptr<IOHookProvider> when not necessary.Gravatar Sadie Powell2023-01-101-1/+1
* | Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-101-3/+3
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-2/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-2/+1
* | Pass the client/server sockaddr around as a ref instead of a ptr.Gravatar Sadie Powell2022-12-251-1/+1
* | Rework the levels things are logged at to make more sense.Gravatar Sadie Powell2022-12-181-3/+3
* | 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