summaryrefslogtreecommitdiffstats
path: root/src/crypt/cryptclassnullcipher.cpp
blob: a60bab4071f8c31e977cd49fa60661db113968e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "cryptclassnullcipher.h"

CryptClassNullCipher::CryptClassNullCipher()
    : CryptClassEvp()
{
}

CryptClassNullCipher::~CryptClassNullCipher()
{
}

const EVP_CIPHER *CryptClassNullCipher::algorithm()
{
    return EVP_enc_null();
}