| 1 | // -------------------------------------------------------------------------- |
|---|
| 2 | // |
|---|
| 3 | // File |
|---|
| 4 | // Name: CipherDescription.cpp |
|---|
| 5 | // Purpose: Pure virtual base class for describing ciphers |
|---|
| 6 | // Created: 1/12/03 |
|---|
| 7 | // |
|---|
| 8 | // -------------------------------------------------------------------------- |
|---|
| 9 | |
|---|
| 10 | #include "Box.h" |
|---|
| 11 | |
|---|
| 12 | #include <openssl/evp.h> |
|---|
| 13 | |
|---|
| 14 | #define BOX_LIB_CRYPTO_OPENSSL_HEADERS_INCLUDED_TRUE |
|---|
| 15 | |
|---|
| 16 | #include "CipherDescription.h" |
|---|
| 17 | |
|---|
| 18 | #include "MemLeakFindOn.h" |
|---|
| 19 | |
|---|
| 20 | // -------------------------------------------------------------------------- |
|---|
| 21 | // |
|---|
| 22 | // Function |
|---|
| 23 | // Name: CipherDescription::CipherDescription() |
|---|
| 24 | // Purpose: Constructor |
|---|
| 25 | // Created: 1/12/03 |
|---|
| 26 | // |
|---|
| 27 | // -------------------------------------------------------------------------- |
|---|
| 28 | CipherDescription::CipherDescription() |
|---|
| 29 | { |
|---|
| 30 | } |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | // -------------------------------------------------------------------------- |
|---|
| 34 | // |
|---|
| 35 | // Function |
|---|
| 36 | // Name: CipherDescription::CipherDescription(const CipherDescription &) |
|---|
| 37 | // Purpose: Copy constructor |
|---|
| 38 | // Created: 1/12/03 |
|---|
| 39 | // |
|---|
| 40 | // -------------------------------------------------------------------------- |
|---|
| 41 | CipherDescription::CipherDescription(const CipherDescription &rToCopy) |
|---|
| 42 | { |
|---|
| 43 | } |
|---|
| 44 | |
|---|
| 45 | |
|---|
| 46 | // -------------------------------------------------------------------------- |
|---|
| 47 | // |
|---|
| 48 | // Function |
|---|
| 49 | // Name: ~CipherDescription::CipherDescription() |
|---|
| 50 | // Purpose: Destructor |
|---|
| 51 | // Created: 1/12/03 |
|---|
| 52 | // |
|---|
| 53 | // -------------------------------------------------------------------------- |
|---|
| 54 | CipherDescription::~CipherDescription() |
|---|
| 55 | { |
|---|
| 56 | } |
|---|
| 57 | |
|---|
| 58 | |
|---|
| 59 | |
|---|
| 60 | // -------------------------------------------------------------------------- |
|---|
| 61 | // |
|---|
| 62 | // Function |
|---|
| 63 | // Name: CipherDescription::operator=(const CipherDescription &) |
|---|
| 64 | // Purpose: Assignment operator |
|---|
| 65 | // Created: 1/12/03 |
|---|
| 66 | // |
|---|
| 67 | // -------------------------------------------------------------------------- |
|---|
| 68 | CipherDescription &CipherDescription::operator=(const CipherDescription &rToCopy) |
|---|
| 69 | { |
|---|
| 70 | return *this; |
|---|
| 71 | } |
|---|
| 72 | |
|---|
| 73 | |
|---|