/// <summary>
 /// Initializes a new instance of the <see cref="SelfMadeCaesarStreamEncryptionStrategy"/> class.
 /// </summary>
 /// <param name="options">The options.</param>
 public SelfMadeCaesarStreamEncryptionStrategy(EncryptionOptions options)
 {
     _options = options;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SelfMadeAes256StreamEncryptionStrategy"/> class.
 /// </summary>
 /// <param name="options">The options.</param>
 public SelfMadeAes256StreamEncryptionStrategy(EncryptionOptions options)
 {
     _options = options;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="MicrosoftStreamEncryptionStrategy"/> class.
 /// </summary>
 /// <param name="options">The options.</param>
 public MicrosoftStreamEncryptionStrategy(EncryptionOptions options)
 {
     _options = options;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SelfMadeSimpleStreamEncryptionStrategy"/> class.
 /// </summary>
 /// <param name="options">The options.</param>
 public SelfMadeSimpleStreamEncryptionStrategy(EncryptionOptions options)
 {
     _options = options;
 }