Crypto algorithm implementations for the 65816
Go to file
Stephen Heumann 458e769212 Add initialization function to permit computation of SHA-224 hashes.
SHA-224 uses the exact same computation as SHA-256, just with different initial values.
2017-07-03 23:40:36 -05:00
.gitignore Add .gitignore file. 2017-07-02 15:29:51 -05:00
Makefile Add basic makefile. 2017-07-02 20:26:20 -05:00
aes.asm Add functions for AES CBC mode encryption and decryption. 2017-07-01 23:29:17 -05:00
aes.h Add implementation and test for AES CTR mode. 2017-07-02 18:25:43 -05:00
aes.macros state -> context 2017-06-29 16:52:34 -05:00
aesalign.asm Initial working implementation of AES-128 encryption. 2017-06-26 20:41:44 -05:00
aescbctest.c Add copyright notices and comments. 2017-07-02 18:41:21 -05:00
aescrypt.c Add copyright notices and comments. 2017-07-02 18:41:21 -05:00
aesctrtest.c Add copyright notices and comments. 2017-07-02 18:41:21 -05:00
aesmodes.c Add copyright notices and comments. 2017-07-02 18:41:21 -05:00
aestest.c Usage message and indentation cleanups in test program. 2017-06-27 23:42:20 -05:00
rotate.macros Add comments and copyright notices, and rename chunk to block. 2017-07-01 17:53:49 -05:00
sha1.asm Add comments and copyright notices, and rename chunk to block. 2017-07-01 17:53:49 -05:00
sha1.cc Add comments and copyright notices, and rename chunk to block. 2017-07-01 17:53:49 -05:00
sha1.h Add comments and copyright notices, and rename chunk to block. 2017-07-01 17:53:49 -05:00
sha1.macros Typos 2017-07-02 22:54:18 -05:00
sha1sum.c Add comments and copyright notices, and rename chunk to block. 2017-07-01 17:53:49 -05:00
sha1test.c Add comments and copyright notices, and rename chunk to block. 2017-07-01 17:53:49 -05:00
sha256.asm Add initialization function to permit computation of SHA-224 hashes. 2017-07-03 23:40:36 -05:00
sha256.h Add initialization function to permit computation of SHA-224 hashes. 2017-07-03 23:40:36 -05:00
sha256.macros Remove unused macros. 2017-07-03 23:05:51 -05:00
sha256test.c Add initialization function to permit computation of SHA-224 hashes. 2017-07-03 23:40:36 -05:00