31 lines
612 B
C#
31 lines
612 B
C#
namespace Org.BouncyCastle.Bcpg.Sig;
|
|
|
|
public class Revocable : SignatureSubpacket
|
|
{
|
|
private static byte[] BooleanToByteArray(bool value)
|
|
{
|
|
byte[] array = new byte[1];
|
|
if (value)
|
|
{
|
|
array[0] = 1;
|
|
return array;
|
|
}
|
|
return array;
|
|
}
|
|
|
|
public Revocable(bool critical, bool isLongLength, byte[] data)
|
|
: base(SignatureSubpacketTag.Revocable, critical, isLongLength, data)
|
|
{
|
|
}
|
|
|
|
public Revocable(bool critical, bool isRevocable)
|
|
: base(SignatureSubpacketTag.Revocable, critical, isLongLength: false, BooleanToByteArray(isRevocable))
|
|
{
|
|
}
|
|
|
|
public bool IsRevocable()
|
|
{
|
|
return data[0] != 0;
|
|
}
|
|
}
|