Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F34140314
assuan.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
3 KB
Subscribers
None
assuan.h
View Options
/*
utils/assuan.h
This file is part of libkleopatra
SPDX-FileCopyrightText: 2021, 2022 g10 Code GmbH
SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include
"kleo_export.h"
#include
<memory>
#include
<string>
#include
<vector>
namespace
GpgME
{
class
AssuanTransaction
;
class
Context
;
class
DefaultAssuanTransaction
;
class
Error
;
}
namespace
Kleo
{
/** The Assuan namespace collects functions for communicating with the GnuPG
* agent via the Assuan protocol. */
namespace
Assuan
{
/** Checks if the GnuPG agent is running and accepts connections. */
KLEO_EXPORT
bool
agentIsRunning
();
/** Sends the Assuan @p command using the @p transaction and the @p assuanContext
* to the GnuPG agent and waits for the result. The returned transaction can be used
* to retrieve the result.
* If an error occurred, then @p err provides details. */
KLEO_EXPORT
std
::
unique_ptr
<
GpgME
::
AssuanTransaction
>
sendCommand
(
std
::
shared_ptr
<
GpgME
::
Context
>
&
assuanContext
,
const
std
::
string
&
command
,
std
::
unique_ptr
<
GpgME
::
AssuanTransaction
>
transaction
,
GpgME
::
Error
&
err
);
/** Sends the Assuan @p command using a default Assuan transaction and the @p assuanContext
* to the GnuPG agent and waits for the result. The returned transaction can be used
* to retrieve the result.
* If an error occurred, then @p err provides details. */
KLEO_EXPORT
std
::
unique_ptr
<
GpgME
::
DefaultAssuanTransaction
>
sendCommand
(
std
::
shared_ptr
<
GpgME
::
Context
>
&
assuanContext
,
const
std
::
string
&
command
,
GpgME
::
Error
&
err
);
/** Sends the Assuan @p command using a default Assuan transaction and the @p assuanContext
* to the GnuPG agent and waits for the result. Returns the data that was sent by
* GnuPG agent in response to the @p command.
* If an error occurred, then @p err provides details. */
KLEO_EXPORT
std
::
string
sendDataCommand
(
std
::
shared_ptr
<
GpgME
::
Context
>
assuanContext
,
const
std
::
string
&
command
,
GpgME
::
Error
&
err
);
/** Sends the Assuan @p command using a default Assuan transaction and the @p assuanContext
* to the GnuPG agent and waits for the result. Returns the status lines that were sent by
* GnuPG agent in response to the @p command.
* If an error occurred, then @p err provides details. */
KLEO_EXPORT
std
::
vector
<
std
::
pair
<
std
::
string
,
std
::
string
>>
sendStatusLinesCommand
(
std
::
shared_ptr
<
GpgME
::
Context
>
assuanContext
,
const
std
::
string
&
command
,
GpgME
::
Error
&
err
);
/** Sends the Assuan @p command using a default Assuan transaction and the @p assuanContext
* to the GnuPG agent and waits for the result. Returns the status that was sent by
* GnuPG agent in response to the @p command.
* If an error occurred, then @p err provides details. */
KLEO_EXPORT
std
::
string
sendStatusCommand
(
const
std
::
shared_ptr
<
GpgME
::
Context
>
&
assuanContext
,
const
std
::
string
&
command
,
GpgME
::
Error
&
err
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Tue, Dec 9, 1:09 AM (18 h, 5 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
d9/c7/766902055c9abb120395eb30bc64
Attached To
rLIBKLEO Libkleo
Event Timeline
Log In to Comment