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