Skip to content
This repository was archived by the owner on Aug 23, 2020. It is now read-only.
/ superaes Public archive

💤 Implementation of AES algorithm with bigger galois field size

License

Notifications You must be signed in to change notification settings

acatton/superaes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

**This project is abandoned and not maintained. It is only here for the record.**


There's no usage help. This file explains the command line options.

The usage is :
  superaes -k <KEY FILE> [OPTION] [INPUT FILE]

For example :
  superaes -k key.superaes -o output.txt message.txt
  echo message | superaes -e -k key.superaes | mail secret@example.com

If the INPUT FILE is not specified, superaes will read from standard input.

The options are :

  -k <KEY FILE>
    Specify the key file. This option is required.

    The key file can be generated from one of this command line :
      head -c40 /dev/random
      head -c60 /dev/random
      head -c80 /dev/random

  -e
    Encrypt the message

  -d
    Decrypt the message

  -o <OUTPUT FILE>
    Specify output file.

About

💤 Implementation of AES algorithm with bigger galois field size

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published