public Serpent(byte[] key) : base(key) { _key = new SerpentKey(key); _sBox = new SerpentSbox(); }
public Serpent(ISerpentKey key, ISerpentSbox sBox) : base(key.RawBytes) { _key = key; _sBox = sBox; }