13 lines
154 B
C++
13 lines
154 B
C++
|
|
||
|
#include "codec.hh"
|
||
|
|
||
|
namespace LibCryptAfinity {
|
||
|
Codec::Codec(){
|
||
|
}
|
||
|
|
||
|
Text Codec::encode(Text t, Key k) { }
|
||
|
|
||
|
Text Codec::decode(Text t, Key k) { }
|
||
|
|
||
|
}
|