1 | // |
2 | // CryptoTransform.cpp |
3 | // |
4 | // Library: Crypto |
5 | // Package: Cipher |
6 | // Module: CryptoTransform |
7 | // |
8 | // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. |
9 | // and Contributors. |
10 | // |
11 | // SPDX-License-Identifier: BSL-1.0 |
12 | // |
13 | |
14 | |
15 | #include "Poco/Crypto/CryptoTransform.h" |
16 | |
17 | |
18 | namespace Poco { |
19 | namespace Crypto { |
20 | |
21 | |
22 | CryptoTransform::CryptoTransform() |
23 | { |
24 | } |
25 | |
26 | |
27 | CryptoTransform::~CryptoTransform() |
28 | { |
29 | } |
30 | |
31 | |
32 | int CryptoTransform::setPadding(int padding) |
33 | { |
34 | return 1; |
35 | } |
36 | |
37 | |
38 | } } // namespace Poco::Crypto |
39 | |