diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-02-02 19:22:45 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-02-02 19:22:45 +0700 |
commit | ae8d09df6e2fa33a138a200949a75b3c8750cc0f (patch) | |
tree | d7675a6c9e54b31688e00ceb0973b35f15b8eda5 /crypto/src/bcpg/sig | |
parent | Support null 'otherInfo' (diff) | |
download | BouncyCastle.NET-ed25519-ae8d09df6e2fa33a138a200949a75b3c8750cc0f.tar.xz |
Misc. cleanup after bc-fips-csharp updates
Diffstat (limited to 'crypto/src/bcpg/sig')
-rw-r--r-- | crypto/src/bcpg/sig/Features.cs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/crypto/src/bcpg/sig/Features.cs b/crypto/src/bcpg/sig/Features.cs index f6123d612..a04d2cf9d 100644 --- a/crypto/src/bcpg/sig/Features.cs +++ b/crypto/src/bcpg/sig/Features.cs @@ -24,19 +24,18 @@ namespace Org.BouncyCastle.Bcpg.Sig return new byte[1]{ feature }; } - public Features( - bool critical, - bool isLongLength, - byte[] data) + public Features(bool critical, bool isLongLength, byte[] data) : base(SignatureSubpacketTag.Features, critical, isLongLength, data) { } - public Features(bool critical, byte features): this(critical, false, FeatureToByteArray(features)) + public Features(bool critical, byte features) + : this(critical, false, FeatureToByteArray(features)) { } - public Features(bool critical, int features): this(critical, false, FeatureToByteArray((byte)features)) + public Features(bool critical, int features) + : this(critical, false, FeatureToByteArray((byte)features)) { } |