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

CryptClassNullCipher::CryptClassNullCipher()
    : CryptClassBase()
{

}

void CryptClassNullCipher::encrypt()
{
    m_cryptText = m_clearText;
}

void CryptClassNullCipher::decrypt()
{
    m_clearText = m_cryptText;
}