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