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

CryptClassNullCipher::CryptClassNullCipher()
    : CryptClassBase()
{

}

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





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