| 1 | // |
| 2 | // KeyPair.cpp |
| 3 | // |
| 4 | // |
| 5 | // Library: Crypto |
| 6 | // Package: CryptoCore |
| 7 | // Module: KeyPair |
| 8 | // |
| 9 | // Copyright (c) 2008, Applied Informatics Software Engineering GmbH. |
| 10 | // and Contributors. |
| 11 | // |
| 12 | // SPDX-License-Identifier: BSL-1.0 |
| 13 | // |
| 14 | |
| 15 | |
| 16 | #include "Poco/Crypto/KeyPair.h" |
| 17 | #include <openssl/rsa.h> |
| 18 | |
| 19 | |
| 20 | namespace Poco { |
| 21 | namespace Crypto { |
| 22 | |
| 23 | |
| 24 | KeyPair::KeyPair(KeyPairImpl::Ptr pKeyPairImpl): _pImpl(pKeyPairImpl) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | |
| 29 | KeyPair::~KeyPair() |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | |
| 34 | } } // namespace Poco::Crypto |
| 35 | |