Package org.bouncycastle.bcpg.sig
Class KeyFlags
- java.lang.Object
-
- org.bouncycastle.bcpg.SignatureSubpacket
-
- org.bouncycastle.bcpg.sig.KeyFlags
-
public class KeyFlags extends SignatureSubpacket
Packet holding the key flag values.
-
-
Field Summary
Fields Modifier and Type Field Description static int
AUTHENTICATION
static int
CERTIFY_OTHER
static int
ENCRYPT_COMMS
static int
ENCRYPT_STORAGE
static int
SHARED
static int
SIGN_DATA
static int
SPLIT
-
Fields inherited from class org.bouncycastle.bcpg.SignatureSubpacket
data
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFlags()
Return the flag values contained in the first 4 octets (note: at the moment the standard only uses the first one).-
Methods inherited from class org.bouncycastle.bcpg.SignatureSubpacket
encode, equals, getData, getType, hashCode, isCritical, isLongLength
-
-
-
-
Field Detail
-
CERTIFY_OTHER
public static final int CERTIFY_OTHER
- See Also:
- Constant Field Values
-
SIGN_DATA
public static final int SIGN_DATA
- See Also:
- Constant Field Values
-
ENCRYPT_COMMS
public static final int ENCRYPT_COMMS
- See Also:
- Constant Field Values
-
ENCRYPT_STORAGE
public static final int ENCRYPT_STORAGE
- See Also:
- Constant Field Values
-
SPLIT
public static final int SPLIT
- See Also:
- Constant Field Values
-
AUTHENTICATION
public static final int AUTHENTICATION
- See Also:
- Constant Field Values
-
SHARED
public static final int SHARED
- See Also:
- Constant Field Values
-
-