Regen patches

This commit is contained in:
rsadowski
2026-01-19 10:50:51 +00:00
parent 3df8f34ce8
commit 725d10920f
@@ -15,7 +15,7 @@ Index: plugins/qca-ossl/qca-ossl.cpp
#include <openssl/kdf.h>
using namespace QCA;
@@ -311,7 +318,7 @@ static void try_get_name_item(X509_NAME *name, int nid
@@ -311,7 +316,7 @@ static void try_get_name_item(X509_NAME *name, int nid
while ((loc = X509_NAME_get_index_by_NID(name, nid, loc)) != -1) {
X509_NAME_ENTRY *ne = X509_NAME_get_entry(name, loc);
ASN1_STRING *data = X509_NAME_ENTRY_get_data(ne);
@@ -24,7 +24,7 @@ Index: plugins/qca-ossl/qca-ossl.cpp
info->insert(t, QString::fromLatin1(cs));
}
}
@@ -328,7 +335,7 @@ try_get_name_item_by_oid(X509_NAME *name, const QStrin
@@ -328,7 +333,7 @@ try_get_name_item_by_oid(X509_NAME *name, const QStrin
while ((loc = X509_NAME_get_index_by_OBJ(name, oid, loc)) != -1) {
X509_NAME_ENTRY *ne = X509_NAME_get_entry(name, loc);
ASN1_STRING *data = X509_NAME_ENTRY_get_data(ne);
@@ -33,7 +33,7 @@ Index: plugins/qca-ossl/qca-ossl.cpp
info->insert(t, QString::fromLatin1(cs));
qDebug() << "oid: " << oidText << ", result: " << cs;
}
@@ -3335,15 +3342,15 @@ class X509Item (public)
@@ -3335,15 +3340,15 @@ class X509Item (public)
QDateTime ASN1_UTCTIME_QDateTime(const ASN1_UTCTIME *tm, int *isGmt)
{
QDateTime qdt;
@@ -52,7 +52,7 @@ Index: plugins/qca-ossl/qca-ossl.cpp
if (i < 10)
goto auq_err;
@@ -3716,9 +3723,9 @@ class MyCertContext : public CertContext (public)
@@ -3716,9 +3721,9 @@ class MyCertContext : public CertContext (public)
X509_get0_signature(&signature, nullptr, x);
if (signature) {
@@ -65,7 +65,7 @@ Index: plugins/qca-ossl/qca-ossl.cpp
}
switch (X509_get_signature_nid(x)) {
@@ -4214,9 +4221,9 @@ class MyCSRContext : public CSRContext (public)
@@ -4214,9 +4219,9 @@ class MyCSRContext : public CSRContext (public)
X509_REQ_get0_signature(x, &signature, nullptr);
if (signature) {
@@ -78,7 +78,7 @@ Index: plugins/qca-ossl/qca-ossl.cpp
}
switch (X509_REQ_get_signature_nid(x)) {
@@ -4412,9 +4419,9 @@ class MyCRLContext : public CRLContext (public)
@@ -4412,9 +4417,9 @@ class MyCRLContext : public CRLContext (public)
X509_CRL_get0_signature(x, &signature, nullptr);
if (signature) {
@@ -91,7 +91,7 @@ Index: plugins/qca-ossl/qca-ossl.cpp
}
switch (X509_CRL_get_signature_nid(x)) {
@@ -6460,7 +6467,7 @@ static QStringList all_hash_types()
@@ -6460,7 +6465,7 @@ static QStringList all_hash_types()
list += QStringLiteral("md2");
#endif
list += QStringLiteral("md4");
@@ -100,7 +100,7 @@ Index: plugins/qca-ossl/qca-ossl.cpp
list += QStringLiteral("whirlpool");
#endif
}
@@ -6921,7 +6928,7 @@ class opensslProvider : public Provider (public)
@@ -6921,7 +6926,7 @@ class opensslProvider : public Provider (public)
#endif
else if (type == QLatin1String("md4"))
return new opensslHashContext(EVP_md4(), this, type);