Example #1
0
        internal byte[] GetEncryptedBytes(ISmimeCryptographer cryptographer)
        {
            if (m_encryptedBytes == null)
            {
                m_encryptedBytes = cryptographer.GetEncryptedBytes(this.Message);
            }

            return(m_encryptedBytes);
        }
 public byte[] GetEncryptedBytes(MimeEntity encryptedEntity)
 {
     return(m_innerSoftwareCryptographer.GetEncryptedBytes(encryptedEntity));
 }