3 writes to cipherText
System.ServiceModel (3)
System\ServiceModel\Security\EncryptedData.cs (3)
41
CryptoHelper.GenerateIVAndEncrypt(this.algorithm, this.buffer, out this.iv, out this.
cipherText
);
54
this.
cipherText
= reader.ReadContentAsBase64();
59
this.
cipherText
= SecurityUtils.ReadContentAsBase64(reader, maxBufferSize);
4 references to cipherText
System.ServiceModel (4)
System\ServiceModel\Security\EncryptedData.cs (4)
64
this.decryptedBuffer = CryptoHelper.ExtractIVAndDecrypt(this.algorithm, this.
cipherText
, 0, this.
cipherText
.Length);
100
writer.WriteBase64(this.
cipherText
, 0, this.
cipherText
.Length);