/// <inheritdoc />
        public RollingIvFactory CreateFactory(ushort version)
        {
            var algorithm = new AesTransform(EmsTable, EmsInitialValue, EmsAesKey);

            return(new RollingIvFactory(algorithm, version));
        }
 /// <inheritdoc />
 public RollingIvFactory CreateFactory(ushort version)
 {
     var algorithm = new AesTransform(EmsTable, EmsInitialValue, EmsAesKey);
     return new RollingIvFactory(algorithm, version);
 }