File indexing completed on 2024-06-02 05:24:42

0001 /*  smartcard/algorithminfo.h
0002 
0003     This file is part of Kleopatra, the KDE keymanager
0004     SPDX-FileCopyrightText: 2022 g10 Code GmbH
0005     SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
0006 
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 #pragma once
0010 
0011 #include <QString>
0012 
0013 #include <string>
0014 
0015 namespace Kleo
0016 {
0017 namespace SmartCard
0018 {
0019 
0020 struct AlgorithmInfo {
0021     std::string id;
0022     QString displayName;
0023 };
0024 
0025 } // namespace SmartCard
0026 } // namespace Kleo