2 references to GetCiphertextLengthCbc
Microsoft.AspNetCore.DataProtection (1)
Managed\ManagedAuthenticatedEncryptor.cs (1)
375var cipherTextLength = symmetricAlgorithm.GetCiphertextLengthCbc(plainTextSpan.Length); // CBC because symmetricAlgorithm is created with CBC mode
System.Security.Cryptography (1)
System\Security\Cryptography\SymmetricAlgorithm.cs (1)
925int ciphertextLength = GetCiphertextLengthCbc(plaintext.Length, paddingMode);