예제 #1
0
 /// <summary>
 /// Creates an <see cref="SMIMECryptographer"/> with the configured settings
 /// </summary>
 /// <returns>The configured cryptographer.</returns>
 public ISmimeCryptographer Create()
 {
     if (Cryptographer == null)
     {
         return(new SMIMECryptographer(DefaultEncryption, DefaultDigest));
     }
     else
     {
         return(Cryptographer.Create());
     }
 }