diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2019-08-10 00:18:03 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2019-08-10 00:18:03 +0700 |
commit | 9c6880706476c6066b9aa2ce82c159d64c8766c6 (patch) | |
tree | 092fb747c1e8d483d4e611e08a1e648f9d864620 /crypto/src/tsp | |
parent | Use utility method (diff) | |
download | BouncyCastle.NET-ed25519-9c6880706476c6066b9aa2ce82c159d64c8766c6.tar.xz |
Add and use IntValueExact properties
Diffstat (limited to 'crypto/src/tsp')
-rw-r--r-- | crypto/src/tsp/GenTimeAccuracy.cs | 2 | ||||
-rw-r--r-- | crypto/src/tsp/TimeStampRequest.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/tsp/GenTimeAccuracy.cs b/crypto/src/tsp/GenTimeAccuracy.cs index 8a2f29989..400bf6f9e 100644 --- a/crypto/src/tsp/GenTimeAccuracy.cs +++ b/crypto/src/tsp/GenTimeAccuracy.cs @@ -22,7 +22,7 @@ namespace Org.BouncyCastle.Tsp private int GetTimeComponent( DerInteger time) { - return time == null ? 0 : time.Value.IntValue; + return time == null ? 0 : time.IntValueExact; } public override string ToString() diff --git a/crypto/src/tsp/TimeStampRequest.cs b/crypto/src/tsp/TimeStampRequest.cs index 0b41adef7..f5c6a09e6 100644 --- a/crypto/src/tsp/TimeStampRequest.cs +++ b/crypto/src/tsp/TimeStampRequest.cs @@ -72,7 +72,7 @@ namespace Org.BouncyCastle.Tsp public int Version { - get { return req.Version.Value.IntValue; } + get { return req.Version.IntValueExact; } } public string MessageImprintAlgOid |