QtPass 1.6.0
Multi-platform GUI for pass, the standard unix password manager.
Loading...
Searching...
No Matches
gpgkeystate_p.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2026 Anne Jan Brouwer
2// SPDX-License-Identifier: GPL-3.0-or-later
3#ifndef SRC_GPGKEYSTATE_P_H_
4#define SRC_GPGKEYSTATE_P_H_
5
6#include "userinfo.h"
7
8#include <QStringList>
9
10void handlePubSecRecord(const QStringList &props, bool secret,
11 UserInfo &current_user);
12void handleFprRecord(const QStringList &props, UserInfo &current_user);
13
14#endif // SRC_GPGKEYSTATE_P_H_
void handlePubSecRecord(const QStringList &props, bool secret, UserInfo &current_user)
Handle a pub or sec record in GPG colon output.
void handleFprRecord(const QStringList &props, UserInfo &current_user)
Handle an fpr (fingerprint) record in GPG colon output.
Stores key info lines including validity, creation date and more.
Definition userinfo.h:13