You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 20, 2023. It is now read-only.
I can't use AES because its BlockCipher instances set the blockSize to 16 bytes.
Can you add an instance of AES that uses a blockSize of 32?
or should I create my own type for this and then a BlockCipher instance of it?
or should I write the C code that handles 32 bytes of block size?
Hello,
I need to write some code written in C# to Haskell. The C# code uses a Rijndael and sets the block size to 32 bytes (256 bits):
I can't use
AESbecause itsBlockCipherinstances set theblockSizeto 16 bytes.Can you add an instance of
AESthat uses ablockSizeof 32?or should I create my own type for this and then a
BlockCipherinstance of it?or should I write the
Ccode that handles 32 bytes of block size?Thanks in advance for any help.