8 implementations of TransformFinalBlock
mscorlib (5)
system\security\cryptography\base64transforms.cs (2)
65public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) { 187public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) {
system\security\cryptography\cryptoapitransform.cs (1)
242public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) {
system\security\cryptography\hashalgorithm.cs (1)
156public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) {
system\security\cryptography\rijndaelmanagedtransform.cs (1)
310public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) {
System.Core (1)
System\Security\Cryptography\CapiSymmetricAlgorithm.cs (1)
514public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) {
System.IdentityModel (1)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (1)
218public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount)
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricAlgorithm.cs (1)
275public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount)
20 references to TransformFinalBlock
mscorlib (3)
system\security\cryptography\cryptostream.cs (3)
122byte[] finalBytes = _Transform.TransformFinalBlock(_InputBuffer, 0, _InputBufferIndex); 284byte[] finalBytes = _Transform.TransformFinalBlock(_InputBuffer, 0, _InputBufferIndex); 465byte[] finalBytes = _Transform.TransformFinalBlock(_InputBuffer, 0, _InputBufferIndex);
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlAeadAes256CbcHmac256Algorithm.cs (1)
216byte[] buffTmp = encryptor.TransformFinalBlock(plainText, count, plainText.Length - count); // done encrypting
System.IdentityModel (4)
System\IdentityModel\EncryptedDataElement.cs (2)
91plainText = decrTransform.TransformFinalBlock( cipherText, offset + iv.Length, count - iv.Length ); 113cipherText = encrTransform.TransformFinalBlock( plainText, offset, length );
System\IdentityModel\RsaEncryptionCookieTransform.cs (2)
247return decryptor.TransformFinalBlock(encryptedData, 0, encryptedData.Length); 296encryptedData = encryptor.TransformFinalBlock(value, 0, value.Length);
System.Security (10)
system\security\cryptography\xml\encryptedxml.cs (2)
666cipher = enc.TransformFinalBlock(plaintext, 0, plaintext.Length); 727output = dec.TransformFinalBlock(cipherValue, lengthIV, cipherValue.Length - lengthIV);
system\security\cryptography\xml\symmetrickeywrap.cs (8)
53byte[] temp1 = enc1.TransformFinalBlock(rgbWKCKS, 0, rgbWKCKS.Length); 61return enc2.TransformFinalBlock(temp2, 0, temp2.Length); 76byte[] temp2 = dec1.TransformFinalBlock(rgbEncryptedWrappedKeyData, 0, rgbEncryptedWrappedKeyData.Length); 85byte[] rgbWKCKS = dec2.TransformFinalBlock(temp1, 0, temp1.Length); 119return enc.TransformFinalBlock(temp, 0, temp.Length); 134byte[] rgbB = enc.TransformFinalBlock(rgbBlock, 0, 16); 166byte[] temp = dec.TransformFinalBlock(rgbEncryptedWrappedKeyData, 0, rgbEncryptedWrappedKeyData.Length); 191byte[] rgbB = dec.TransformFinalBlock(rgbBlock, 0, 16);
System.ServiceModel (2)
System\ServiceModel\Security\CryptoHelper.cs (2)
159return decrTransform.TransformFinalBlock(cipherText, offset + iv.Length, count - iv.Length); 249cipherText = encrTransform.TransformFinalBlock(plainText.Array, plainText.Offset, plainText.Count);