/// <summary>
 ///     Initializes a new instance of the <see cref="EncryptorProducerBehavior" /> class.
 /// </summary>
 /// <param name="streamFactory">
 ///     The <see cref="ISilverbackCryptoStreamFactory" />.
 /// </param>
 public EncryptorProducerBehavior(ISilverbackCryptoStreamFactory streamFactory)
 {
     _streamFactory = streamFactory;
 }
 /// <summary>
 ///     Initializes a new instance of the <see cref="DecryptorConsumerBehavior" /> class.
 /// </summary>
 /// <param name="streamFactory">
 ///     The <see cref="ISilverbackCryptoStreamFactory" />.
 /// </param>
 public DecryptorConsumerBehavior(ISilverbackCryptoStreamFactory streamFactory)
 {
     _streamFactory = streamFactory;
 }