1 write to _symmetricAlgorithmBlockSizeInBytes
Microsoft.AspNetCore.DataProtection (1)
Managed\ManagedAuthenticatedEncryptor.cs (1)
55
_symmetricAlgorithmBlockSizeInBytes
= symmetricAlgorithm.GetBlockSizeInBytes();
13 references to _symmetricAlgorithmBlockSizeInBytes
Microsoft.AspNetCore.DataProtection (13)
Managed\ManagedAuthenticatedEncryptor.cs (13)
68
AlgorithmAssert.IsAllowableSymmetricAlgorithmBlockSize(checked((uint)
_symmetricAlgorithmBlockSizeInBytes
* 8));
92
if (ciphertext.Length < checked(KEY_MODIFIER_SIZE_IN_BYTES +
_symmetricAlgorithmBlockSizeInBytes
+ _validationAlgorithmDigestLengthInBytes))
98
var estimatedDecryptedSize = ciphertext.Length - (KEY_MODIFIER_SIZE_IN_BYTES +
_symmetricAlgorithmBlockSizeInBytes
+ _validationAlgorithmDigestLengthInBytes);
106
var ciphertextOffset = ivOffset +
_symmetricAlgorithmBlockSizeInBytes
;
152
var iv = ciphertext.Slice(ivOffset,
_symmetricAlgorithmBlockSizeInBytes
);
185
var ivLength =
_symmetricAlgorithmBlockSizeInBytes
;
299
var outputSize = KEY_MODIFIER_SIZE_IN_BYTES +
_symmetricAlgorithmBlockSizeInBytes
/* IV */ + cipherTextLength + _validationAlgorithmDigestLengthInBytes /* MAC */;
478
var outputSize = protectedPayload.Count - (KEY_MODIFIER_SIZE_IN_BYTES +
_symmetricAlgorithmBlockSizeInBytes
+ _validationAlgorithmDigestLengthInBytes);
610
+
_symmetricAlgorithmBlockSizeInBytes
/* ciphertext of encrypted empty string */
621
BitHelpers.WriteTo(retVal, ref idx,
_symmetricAlgorithmBlockSizeInBytes
);
644
rgbIV: new byte[
_symmetricAlgorithmBlockSizeInBytes
]))
647
CryptoUtil.Assert(ciphertext != null && ciphertext.Length ==
_symmetricAlgorithmBlockSizeInBytes
, "ciphertext != null && ciphertext.Length == _symmetricAlgorithmBlockSizeInBytes");
652
idx +=
_symmetricAlgorithmBlockSizeInBytes
;