public EncryptedTypeElement(SecurityTokenSerializer keyInfoSerializer)
 {
     _cipherData = new CipherDataElement();
     _encryptionMethod = new EncryptionMethodElement();
     _keyInfo = new KeyInfo(keyInfoSerializer);
     _properties = new List<string>();
     _keyInfoSerializer = keyInfoSerializer;
 }
 public EncryptedTypeElement(SecurityTokenSerializer keyInfoSerializer)
 {
     _cipherData        = new CipherDataElement();
     _encryptionMethod  = new EncryptionMethodElement();
     _keyInfo           = new KeyInfo(keyInfoSerializer);
     _properties        = new List <string>();
     _keyInfoSerializer = keyInfoSerializer;
 }
 public EncryptedData()
 {
     this.m_cipherData = new CipherData();
     this.m_encryptionMethod = new EncryptionMethodElement();
 }