summaryrefslogtreecommitdiff
path: root/src/include/dkimsign.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/dkimsign.h')
-rw-r--r--src/include/dkimsign.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/include/dkimsign.h b/src/include/dkimsign.h
index af1dd70..75d33de 100644
--- a/src/include/dkimsign.h
+++ b/src/include/dkimsign.h
@@ -62,22 +62,22 @@ protected:
#if ( \
(OPENSSL_VERSION_NUMBER < 0x10100000L) \
|| (LIBRESSL_VERSION_NUMBER > 0 && LIBRESSL_VERSION_NUMBER < 0x20700000L))
- EVP_MD_CTX m_Hdr_sha1ctx; /* the RSA SHA1 signature */
- EVP_MD_CTX m_Hdr_sha256ctx; /* the RSA SHA256 signature */
+ EVP_MD_CTX m_Hdr_sha1ctx; // the RSA SHA1 signature
+ EVP_MD_CTX m_Hdr_sha256ctx; // the RSA SHA256 signature
- EVP_MD_CTX m_Bdy_sha1ctx; /* the SHA1 digest */
- EVP_MD_CTX m_Bdy_sha256ctx; /* the SHA256 digest */
+ EVP_MD_CTX m_Bdy_sha1ctx; // the SHA1 digest
+ EVP_MD_CTX m_Bdy_sha256ctx; // the SHA256 digest
#else
- EVP_MD_CTX *m_Hdr_sha1ctx; /* the RSA SHA1 signature */
- EVP_MD_CTX *m_Hdr_sha256ctx; /* the RSA SHA256 signature */
- EVP_MD_CTX *m_Hdr_ed25519ctx; /* the PureEd25519 signature */
+ EVP_MD_CTX *m_Hdr_sha1ctx; // the RSA SHA1 signature
+ EVP_MD_CTX *m_Hdr_sha256ctx; // the RSA SHA256 signature
+ EVP_MD_CTX *m_Hdr_ed25519ctx; // the PureEd25519 signature
- EVP_MD_CTX *m_Bdy_sha1ctx; /* the SHA1 digest */
- EVP_MD_CTX *m_Bdy_sha256ctx; /* the SHA256 digest for RSA */
- EVP_MD_CTX *m_Edy_sha256ctx; /* the SHA256 digest for Ed25519 */
+ EVP_MD_CTX *m_Bdy_sha1ctx; // the SHA1 digest
+ EVP_MD_CTX *m_Bdy_sha256ctx; // the SHA256 digest for RSA
+ EVP_MD_CTX *m_Edy_sha256ctx; // the SHA256 digest for Ed25519
#endif
- int m_Canon; /* canonization method */
+ int m_Canon; // canonization method
int m_EmptyLineCount;
@@ -85,9 +85,9 @@ protected:
string sFrom;
string sSender;
string sSelector;
- string eSelector; /* Used for Ed25519 signatures */
+ string eSelector; // Used for Ed25519 signatures
string sDomain;
- string sIdentity; /* for i= tag, if empty tag will not be included in sig */
+ string sIdentity; // for i= tag, if empty tag will not be included in sig
string sRequiredHeaders;
bool m_IncludeBodyLengthTag;