Represents a file base keys store for OpenPGP keys, which is a physical store where OpenPGP public and private(secret) keys are persisted and managed.

The KeyStore contains both the public and secret key rings combined in one file and protected with password.


It can be used with PGPLib in the methods that require KeyStore parameter, or alone when only key operations are required.

Namespace: DidiSoft.Pgp
Assembly: DidiSoft.Pgp (in DidiSoft.Pgp.dll) Version: 1.7.3.35547

Syntax

C#
[SerializableAttribute]
public class KeyStore
Visual Basic
<SerializableAttribute> _
Public Class KeyStore
Visual C++
[SerializableAttribute]
public ref class KeyStore

Remarks

In PGP (r) and GnuPG the public and secret key rings are stored in two different files.

Inheritance Hierarchy

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are not safe for multi-threaded operations.

See Also