mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
84 lines
1.5 KiB
C++
84 lines
1.5 KiB
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2021 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include "func_base.h"
|
|
#include "digest.h"
|
|
#include "lib/base.h"
|
|
#include <QList>
|
|
#include <QDebug>
|
|
|
|
const QList<int> digest::all_digests(
|
|
{ NID_md5, NID_ripemd160, NID_sha1,
|
|
NID_sha224, NID_sha256, NID_sha384, NID_sha512,
|
|
#ifndef LIBRESSL_VERSION_NUMBER
|
|
NID_sha3_224, NID_sha3_256, NID_sha3_384, NID_sha3_512,
|
|
#endif
|
|
});
|
|
|
|
int digest::default_md(NID_sha256);
|
|
|
|
digest::digest(int nid) : md_nid(nid)
|
|
{
|
|
}
|
|
|
|
digest::digest(const EVP_MD *md) : md_nid(default_md)
|
|
{
|
|
if (!md)
|
|
return;
|
|
if (!OBJ_find_sigid_algs(EVP_MD_type(md), &md_nid, NULL))
|
|
md_nid = EVP_MD_type(md);
|
|
}
|
|
|
|
digest::digest(const QString &name) : md_nid(default_md)
|
|
{
|
|
QString s(name);
|
|
// Workaround for Ed25519
|
|
if (s.isEmpty()) {
|
|
md_nid = NID_undef;
|
|
return;
|
|
}
|
|
md_nid = OBJ_txt2nid(CCHAR(s.remove(QChar(' '))));
|
|
ign_openssl_error();
|
|
}
|
|
|
|
void digest::adjust(QList<int> nids)
|
|
{
|
|
if (!nids.contains(md_nid))
|
|
md_nid = nids.last();
|
|
}
|
|
|
|
bool digest::isInsecure() const
|
|
{
|
|
switch (md_nid) {
|
|
case NID_md5:
|
|
case NID_ripemd160:
|
|
case NID_sha1:
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
const EVP_MD *digest::MD() const
|
|
{
|
|
return md_nid == NID_undef ? NULL : EVP_get_digestbynid(md_nid);
|
|
}
|
|
|
|
QString digest::name() const
|
|
{
|
|
return QString(md_nid == NID_undef ? "" : OBJ_nid2sn(md_nid));
|
|
}
|
|
|
|
const digest digest::getDefault()
|
|
{
|
|
return digest(default_md);
|
|
}
|
|
|
|
void digest::setDefault(const QString &def)
|
|
{
|
|
default_md = digest(def).md_nid;
|
|
}
|