Update OpenSSL (3.0.13) and libssh (0.10.6) (#733)

Update OpenSSL (3.0.13) and libssh (0.10.6)
This commit is contained in:
Mykola Baibuz 2024-04-08 15:49:18 +01:00 committed by GitHub
parent a22c08a41d
commit 5312a6e885
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 3 additions and 6 deletions

View file

@ -139,7 +139,7 @@ X509* QSimpleCrypto::QX509::verifyCertificate(X509* x509, X509_STORE* store)
/// \param notAfter - X509 end date.
/// \return Returns OpenSSL X509 structure or nullptr, if error happened. Returned value must be cleaned up with 'X509_free' to avoid memory leak.
///
X509* QSimpleCrypto::QX509::generateSelfSignedCertificate(const RSA* rsa, const QMap<QByteArray, QByteArray>& additionalData,
X509* QSimpleCrypto::QX509::generateSelfSignedCertificate(RSA* rsa, const QMap<QByteArray, QByteArray>& additionalData,
const QByteArray& certificateFileName, const EVP_MD* md,
const long& serialNumber, const long& version,
const long& notBefore, const long& notAfter)