/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/libs/poco/Crypto/src/CipherKey.cpp
49 строк
812 B
qkrorlqr
Initial NBS OpenSource export
28 апр 2023, 21:54
28 апр 2023, 21:54
783a858
Код
Авторство
О чём код?
// // CipherKey.cpp // // Library: Crypto // Package: Cipher // Module: CipherKey // // Copyright (c) 2007, Applied Informatics Software Engineering GmbH. // and Contributors. // // SPDX-License-Identifier: BSL-1.0 // #include "Poco/Crypto/CipherKey.h" namespace Poco { namespace Crypto { CipherKey::CipherKey(const std::string& name, const std::string& passphrase, const std::string& salt, int iterationCount, const std::string &digest): _pImpl(new CipherKeyImpl(name, passphrase, salt, iterationCount, digest)) { } CipherKey::CipherKey(const std::string& name, const ByteVec& key, const ByteVec& iv): _pImpl(new CipherKeyImpl(name, key, iv)) { } CipherKey::CipherKey(const std::string& name): _pImpl(new CipherKeyImpl(name)) { } CipherKey::~CipherKey() { } } } // namespace Poco::Crypto