init commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
namespace Org.BouncyCastle.Bcpg.OpenPgp;
|
||||
|
||||
public abstract class PgpKeyFlags
|
||||
{
|
||||
public const int CanCertify = 1;
|
||||
|
||||
public const int CanSign = 2;
|
||||
|
||||
public const int CanEncryptCommunications = 4;
|
||||
|
||||
public const int CanEncryptStorage = 8;
|
||||
|
||||
public const int MaybeSplit = 16;
|
||||
|
||||
public const int MaybeShared = 128;
|
||||
}
|
||||
Reference in New Issue
Block a user