For full AES, we have:
from sage.crypto import mq sr = mq.SR(10, 4, 4, 8, star=True, allow_zero_inversions=True,aes_mode=True) plain =' ' key=' ' cipher = sr(plain, key)
Is it possible to decrypt with mq.SR? Is there any method? Thanx.
1 | initial version |
For full AES, we have:
from sage.crypto import mq sr = mq.SR(10, 4, 4, 8, star=True, allow_zero_inversions=True,aes_mode=True) plain =' ' key=' ' cipher = sr(plain, key)
Is it possible to decrypt with mq.SR? Is there any method? Thanx.
For full AES, we have:
from sage.crypto import mq
sr = mq.SR(10, 4, 4, 8, star=True, allow_zero_inversions=True,aes_mode=True)
plain =' '
key=' '
cipher = sr(plain, Is it possible to decrypt with mq.SR? mq.SR
? Is there any method?
Thanx.