File indexing completed on 2025-01-05 04:55:52

0001 /*
0002     utils/cryptoconfig_p.h
0003 
0004     This file is part of libkleopatra, the KDE keymanagement library
0005     SPDX-FileCopyrightText: 2021 g10 Code GmbH
0006     SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #pragma once
0012 
0013 #include <string>
0014 
0015 class QString;
0016 
0017 namespace Kleo
0018 {
0019 
0020 namespace Private
0021 {
0022 
0023 void setFakeCryptoConfigIntValue(const std::string &componentName, const std::string &entryName, int fakeValue);
0024 void clearFakeCryptoConfigIntValue(const std::string &componentName, const std::string &entryName);
0025 
0026 void setFakeCryptoConfigStringValue(const std::string &componentName, const std::string &entryName, const QString &fakeValue);
0027 void clearFakeCryptoConfigStringValue(const std::string &componentName, const std::string &entryName);
0028 
0029 }
0030 
0031 }