Skip to content

Commit

Permalink
Set default value for NonceLength to 32 (#2970)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsuciu authored Jan 28, 2025
1 parent fcc3b74 commit 14d78ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Stack/Opc.Ua.Core/Security/Certificates/Nonce.cs
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ protected Nonce(SerializationInfo info, StreamingContext context)
#region Private Static Members
private static readonly RandomNumberGenerator m_rng = RandomNumberGenerator.Create();

private static uint m_minNonceLength = 0;
private static uint m_minNonceLength = 32;
#endregion

#region IDisposable
Expand Down

0 comments on commit 14d78ca

Please sign in to comment.