Skip to content

Commit 14d78ca

Browse files
authored
Set default value for NonceLength to 32 (#2970)
1 parent fcc3b74 commit 14d78ca

File tree

1 file changed

+1
-1
lines changed
  • Stack/Opc.Ua.Core/Security/Certificates

1 file changed

+1
-1
lines changed

Stack/Opc.Ua.Core/Security/Certificates/Nonce.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ protected Nonce(SerializationInfo info, StreamingContext context)
611611
#region Private Static Members
612612
private static readonly RandomNumberGenerator m_rng = RandomNumberGenerator.Create();
613613

614-
private static uint m_minNonceLength = 0;
614+
private static uint m_minNonceLength = 32;
615615
#endregion
616616

617617
#region IDisposable

0 commit comments

Comments
 (0)