| 1 | // |
| 2 | // KeyPairImpl.cpp |
| 3 | // |
| 4 | // |
| 5 | // Library: Crypto |
| 6 | // Package: CryptoCore |
| 7 | // Module: KeyPairImpl |
| 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/KeyPairImpl.h" |
| 17 | |
| 18 | |
| 19 | namespace Poco { |
| 20 | namespace Crypto { |
| 21 | |
| 22 | |
| 23 | KeyPairImpl::KeyPairImpl(const std::string& name, Type type): |
| 24 | _name(name), |
| 25 | _type(type) |
| 26 | { |
| 27 | } |
| 28 | |
| 29 | |
| 30 | KeyPairImpl::~KeyPairImpl() |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | |
| 35 | } } // namespace Poco::Crypto |
| 36 | |