Ask Your Question

Revision history [back]

Small Scale Variants of the AES (SR)

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.

Small Scale Variants of the AES (SR)

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)

key)

Is it possible to decrypt with mq.SR? mq.SR? Is there any method? Thanx.