/// <summary>
 /// Initializes a new instance of the <see cref="EncryptionParameters"/> class.
 /// </summary>
 /// <param name="passphrase">The passphrase.</param>
 public EncryptionParameters(Guid cryptoId, Passphrase passphrase)
     : this(cryptoId)
 {
     _identity = new LogOnIdentity(passphrase);
 }