4 implementations of TransformFinalBlock
System.Security.Cryptography (4)
18 references to TransformFinalBlock
Microsoft.AspNetCore.DataProtection (1)
System.Security.Cryptography (4)
System.Security.Cryptography.Pkcs (3)
System.Security.Cryptography.Xml (10)
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (8)
53byte[] temp1 = enc1.TransformFinalBlock(rgbWKCKS, 0, rgbWKCKS.Length);
60return enc2.TransformFinalBlock(temp2, 0, temp2.Length);
89byte[] temp2 = dec1.TransformFinalBlock(rgbEncryptedWrappedKeyData, 0, rgbEncryptedWrappedKeyData.Length);
98byte[] rgbWKCKS = dec2.TransformFinalBlock(temp1, 0, temp1.Length);
146return enc.TransformFinalBlock(temp, 0, temp.Length);
163byte[] rgbB = enc.TransformFinalBlock(rgbBlock, 0, 16);
206byte[] temp = dec.TransformFinalBlock(rgbEncryptedWrappedKeyData, 0, rgbEncryptedWrappedKeyData.Length);
234byte[] rgbB = dec.TransformFinalBlock(rgbBlock, 0, 16);