2 references to _MinimumCipherTextLengthInBytesNoAuthenticationTag
System.Data (2)
fx\src\data\System\Data\SqlClient\SqlAeadAes256CbcHmac256Algorithm.cs (2)
49
private const int _MinimumCipherTextLengthInBytesWithAuthenticationTag =
_MinimumCipherTextLengthInBytesNoAuthenticationTag
+ _KeySizeInBytes;
270
int minimumCipherTextLength = hasAuthenticationTag ? _MinimumCipherTextLengthInBytesWithAuthenticationTag :
_MinimumCipherTextLengthInBytesNoAuthenticationTag
;