实例介绍
AES加密源码包,基本涵盖所有AES常用的
【实例截图】
【核心代码】
AES源码包
└── AES源码包
├── 0308895FPGA--AES-algorithm.rar
├── 51589170AES.rar
├── 53510240_25_作业.docx
├── 59564363AES
│ └── AES
│ ├── aes.cpp
│ ├── aes.h
│ ├── initFile.txt
│ ├── IV.txt
│ ├── main.cpp
│ ├── work_schema.cpp
│ └── work_schema.h
├── 59564363AES.zip
├── AES
│ └── AES
│ ├── AesCipher.cpp
│ ├── AesCipher.h
│ ├── AesTest.dsp
│ ├── AesTest.dsw
│ ├── AesTest.ncb
│ ├── AesTest.sdf
│ ├── AesTest.sln
│ ├── AesTest.suo
│ ├── AesTest.v11.suo
│ ├── AesTest.vcproj
│ ├── AesTest.vcproj.WIN-22TBQ870C2D.hss.user
│ ├── AesTest.vcxproj
│ ├── AesTest.vcxproj.filters
│ ├── Backup
│ │ ├── AesTest.sln
│ │ └── AesTest.v11.suo
│ ├── Base64.cpp
│ ├── Base64.h
│ ├── Ciphertext.txt
│ ├── Debug
│ │ ├── AesCipher.obj
│ │ ├── AesCipher.sbr
│ │ ├── AesTest.bsc
│ │ ├── AesTest.exe.embed.manifest
│ │ ├── AesTest.exe.embed.manifest.res
│ │ ├── AesTest.exe.intermediate.manifest
│ │ ├── AesTest.lastbuildstate
│ │ ├── AesTest.log
│ │ ├── AesTest.pdb
│ │ ├── AesTest.unsuccessfulbuild
│ │ ├── Base64.obj
│ │ ├── Base64.sbr
│ │ ├── BuildLog.htm
│ │ ├── Ciphertext.txt
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link-cvtres.read.1.tlog
│ │ ├── link-cvtres.write.1.tlog
│ │ ├── link-rc.read.1.tlog
│ │ ├── link-rc.write.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── mt.dep
│ │ ├── Plaintext restored.txt
│ │ ├── Plaintext.txt
│ │ ├── TestMain.obj
│ │ ├── TestMain.sbr
│ │ ├── vc110.idb
│ │ ├── vc110.pdb
│ │ ├── vc90.idb
│ │ └── vc90.pdb
│ ├── Plaintext restored.txt
│ ├── Plaintext.txt
│ ├── TestMain.cpp
│ ├── UpgradeLog.htm
│ ├── UpgradeLog.XML
│ └── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Error.png
│ ├── UpgradeReport_Information.png
│ ├── UpgradeReport_Success.png
│ ├── UpgradeReport_Warning.png
│ └── UpgradeReport.xslt
├── AES (1)
│ ├── aescrypt.c
│ ├── aes.h
│ ├── aeskey.c
│ ├── aes_modes.c
│ ├── aesopt.h
│ ├── aestab.c
│ ├── aestab.h
│ ├── assert.h
│ ├── brg_endian.h
│ └── brg_types.h
├── aes128
│ ├── aes128.c
│ └── aes128.h
├── aes-128-master (1)
│ └── aes-128-master
│ ├── AES_CBC.cpp
│ ├── AES_CBC.h
│ ├── AES.cpp
│ ├── AES_CTR.cpp
│ ├── AES_CTR.h
│ ├── AES.h
│ └── README.md
├── aes-128-master (1).zip
├── aes-128-master.zip
├── aes128.rar
├── AES (1).rar
├── AES (2)
│ └── AES
│ ├── AesCipher.cpp
│ ├── AesCipher.h
│ ├── AesTest.dsp
│ ├── AesTest.dsw
│ ├── AesTest.ncb
│ ├── AesTest.sdf
│ ├── AesTest.sln
│ ├── AesTest.suo
│ ├── AesTest.v11.suo
│ ├── AesTest.vcproj
│ ├── AesTest.vcproj.WIN-22TBQ870C2D.hss.user
│ ├── AesTest.vcxproj
│ ├── AesTest.vcxproj.filters
│ ├── Backup
│ │ ├── AesTest.sln
│ │ └── AesTest.v11.suo
│ ├── Base64.cpp
│ ├── Base64.h
│ ├── Ciphertext.txt
│ ├── Debug
│ │ ├── AesCipher.obj
│ │ ├── AesCipher.sbr
│ │ ├── AesTest.bsc
│ │ ├── AesTest.exe
│ │ ├── AesTest.exe.embed.manifest
│ │ ├── AesTest.exe.embed.manifest.res
│ │ ├── AesTest.exe.intermediate.manifest
│ │ ├── AesTest.ilk
│ │ ├── AesTest.pdb
│ │ ├── Base64.obj
│ │ ├── Base64.sbr
│ │ ├── BuildLog.htm
│ │ ├── Ciphertext.txt
│ │ ├── mt.dep
│ │ ├── Plaintext restored.txt
│ │ ├── Plaintext.txt
│ │ ├── TestMain.obj
│ │ ├── TestMain.sbr
│ │ ├── vc90.idb
│ │ └── vc90.pdb
│ ├── Plaintext restored.txt
│ ├── Plaintext.txt
│ ├── TestMain.cpp
│ ├── UpgradeLog.htm
│ ├── UpgradeLog.XML
│ └── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Error.png
│ ├── UpgradeReport_Information.png
│ ├── UpgradeReport_Success.png
│ ├── UpgradeReport_Warning.png
│ └── UpgradeReport.xslt
├── AES (2).rar
├── aes-byte-29-08-08.zip
├── AES_Decrypt.c
├── AESEncrpt.rar
├── AES-master
│ └── AES-master
│ ├── aes_amd64.asm
│ ├── aesaux.c
│ ├── aesaux.h
│ ├── aes_avs.c
│ ├── aescpp.h
│ ├── aescrypt.c
│ ├── aes_example
│ │ ├── aes_example.vcxproj
│ │ └── aes_example.vcxproj.filters
│ ├── aesgav.c
│ ├── aes.h
│ ├── aeskey2.c
│ ├── aeskey.c
│ ├── aes_modes.c
│ ├── aes_ni.c
│ ├── aes_ni.h
│ ├── aesopt.h
│ ├── aesrav.c
│ ├── aes.sln
│ ├── aestab.c
│ ├── aestab.h
│ ├── aestmr.c
│ ├── aestst.c
│ ├── aestst.h
│ ├── aes.txt
│ ├── aes_via_ace.h
│ ├── aes_x86_v1.asm
│ ├── aes_x86_v2.asm
│ ├── aesxam.c
│ ├── brg_endian.h
│ ├── brg_types.h
│ ├── dll_asm_amd64_c
│ │ ├── dll_asm_amd64_c.vcxproj
│ │ └── dll_asm_amd64_c.vcxproj.filters
│ ├── dll_asm_x86_v1c
│ │ ├── dll_asm_x86_v1c.vcxproj
│ │ └── dll_asm_x86_v1c.vcxproj.filters
│ ├── dll_asm_x86_v2
│ │ ├── dll_asm_x86_v2.vcxproj
│ │ └── dll_asm_x86_v2.vcxproj.filters
│ ├── dll_asm_x86_v2c
│ │ ├── dll_asm_x86_v2c.vcxproj
│ │ └── dll_asm_x86_v2c.vcxproj.filters
│ ├── dll_generic_c
│ │ ├── dll_generic_c.vcxproj
│ │ └── dll_generic_c.vcxproj.filters
│ ├── gen_tables
│ │ ├── gen_tables.vcxproj
│ │ └── gen_tables.vcxproj.filters
│ ├── gen_tests
│ │ ├── gen_tests.vcxproj
│ │ └── gen_tests.vcxproj.filters
│ ├── lib_asm_amd64_c
│ │ ├── lib_asm_amd64_c.vcxproj
│ │ └── lib_asm_amd64_c.vcxproj.filters
│ ├── lib_asm_x86_v1c
│ │ ├── lib_asm_x86_v1c.vcxproj
│ │ └── lib_asm_x86_v1c.vcxproj.filters
│ ├── lib_asm_x86_v2
│ │ ├── lib_asm_x86_v2.vcxproj
│ │ └── lib_asm_x86_v2.vcxproj.filters
│ ├── lib_asm_x86_v2c
│ │ ├── lib_asm_x86_v2c.vcxproj
│ │ └── lib_asm_x86_v2c.vcxproj.filters
│ ├── lib_generic_c
│ │ ├── lib_generic_c.vcxproj
│ │ └── lib_generic_c.vcxproj.filters
│ ├── modetest.c
│ ├── python_binding
│ │ ├── aesmodule.c
│ │ ├── demo.py
│ │ ├── python_binding.vcxproj
│ │ ├── python_dll.vcxproj.filters
│ │ ├── README.Python
│ │ └── setup.py
│ ├── rdtsc.h
│ ├── rfc3686.c
│ ├── tablegen.c
│ ├── test_avs
│ │ ├── test_avs.vcxproj
│ │ └── test_avs.vcxproj.filters
│ ├── test_dll
│ │ ├── test_dll.vcxproj
│ │ └── test_dll.vcxproj.filters
│ ├── test_lib
│ │ ├── test_lib.vcxproj
│ │ └── test_lib.vcxproj.filters
│ ├── test_modes
│ │ ├── test_modes.vcxproj
│ │ └── test_modes.vcxproj.filters
│ ├── testvals
│ │ ├── cbcmd44.txt
│ │ ├── cbcmd46.txt
│ │ ├── cbcmd48.txt
│ │ ├── cbcme44.txt
│ │ ├── cbcme46.txt
│ │ ├── cbcme48.txt
│ │ ├── ecbmd44.txt
│ │ ├── ecbmd46.txt
│ │ ├── ecbmd48.txt
│ │ ├── ecbme44.txt
│ │ ├── ecbme46.txt
│ │ ├── ecbme48.txt
│ │ ├── ecbnk44.txt
│ │ ├── ecbnk46.txt
│ │ ├── ecbnk48.txt
│ │ ├── ecbnt44.txt
│ │ ├── ecbnt46.txt
│ │ ├── ecbnt48.txt
│ │ ├── ecbvk44.txt
│ │ ├── ecbvk46.txt
│ │ ├── ecbvk48.txt
│ │ ├── ecbvt44.txt
│ │ ├── ecbvt46.txt
│ │ ├── ecbvt48.txt
│ │ ├── fax
│ │ │ ├── CBCGFSbox128.fax
│ │ │ ├── CBCGFSbox192.fax
│ │ │ ├── CBCGFSbox256.fax
│ │ │ ├── CBCKeySbox128.fax
│ │ │ ├── CBCKeySbox192.fax
│ │ │ ├── CBCKeySbox256.fax
│ │ │ ├── CBCMCT128.fax
│ │ │ ├── CBCMCT192.fax
│ │ │ ├── CBCMCT256.fax
│ │ │ ├── CBCMMT128.fax
│ │ │ ├── CBCMMT192.fax
│ │ │ ├── CBCMMT256.fax
│ │ │ ├── CBCVarKey128.fax
│ │ │ ├── CBCVarKey192.fax
│ │ │ ├── CBCVarKey256.fax
│ │ │ ├── CBCVarTxt128.fax
│ │ │ ├── CBCVarTxt192.fax
│ │ │ ├── CBCVarTxt256.fax
│ │ │ ├── CFB128GFSbox128.fax
│ │ │ ├── CFB128GFSbox192.fax
│ │ │ ├── CFB128GFSbox256.fax
│ │ │ ├── CFB128KeySbox128.fax
│ │ │ ├── CFB128KeySbox192.fax
│ │ │ ├── CFB128KeySbox256.fax
│ │ │ ├── CFB128MCT128.fax
│ │ │ ├── CFB128MCT192.fax
│ │ │ ├── CFB128MCT256.fax
│ │ │ ├── CFB128MMT128.fax
│ │ │ ├── CFB128MMT192.fax
│ │ │ ├── CFB128MMT256.fax
│ │ │ ├── CFB128VarKey128.fax
│ │ │ ├── CFB128VarKey192.fax
│ │ │ ├── CFB128VarKey256.fax
│ │ │ ├── CFB128VarTxt128.fax
│ │ │ ├── CFB128VarTxt192.fax
│ │ │ ├── CFB128VarTxt256.fax
│ │ │ ├── ECBGFSbox128.fax
│ │ │ ├── ECBGFSbox192.fax
│ │ │ ├── ECBGFSbox256.fax
│ │ │ ├── ECBKeySbox128.fax
│ │ │ ├── ECBKeySbox192.fax
│ │ │ ├── ECBKeySbox256.fax
│ │ │ ├── ECBMCT128.fax
│ │ │ ├── ECBMCT192.fax
│ │ │ ├── ECBMCT256.fax
│ │ │ ├── ECBMMT128.fax
│ │ │ ├── ECBMMT192.fax
│ │ │ ├── ECBMMT256.fax
│ │ │ ├── ECBVarKey128.fax
│ │ │ ├── ECBVarKey192.fax
│ │ │ ├── ECBVarKey256.fax
│ │ │ ├── ECBVarTxt128.fax
│ │ │ ├── ECBVarTxt192.fax
│ │ │ ├── ECBVarTxt256.fax
│ │ │ ├── OFBGFSbox128.fax
│ │ │ ├── OFBGFSbox192.fax
│ │ │ ├── OFBGFSbox256.fax
│ │ │ ├── OFBKeySbox128.fax
│ │ │ ├── OFBKeySbox192.fax
│ │ │ ├── OFBKeySbox256.fax
│ │ │ ├── OFBMCT128.fax
│ │ │ ├── OFBMCT192.fax
│ │ │ ├── OFBMCT256.fax
│ │ │ ├── OFBMMT128.fax
│ │ │ ├── OFBMMT192.fax
│ │ │ ├── OFBMMT256.fax
│ │ │ ├── OFBVarKey128.fax
│ │ │ ├── OFBVarKey192.fax
│ │ │ ├── OFBVarKey256.fax
│ │ │ ├── OFBVarTxt128.fax
│ │ │ ├── OFBVarTxt192.fax
│ │ │ └── OFBVarTxt256.fax
│ │ └── testvals.txt
│ ├── time_dll
│ │ ├── time_dll.vcxproj
│ │ └── time_dll.vcxproj.filters
│ ├── time_lib
│ │ ├── time_lib.vcxproj
│ │ └── time_lib.vcxproj.filters
│ ├── vbaxam.doc
│ ├── vb.txt
│ ├── via_ace.txt
│ ├── vsyasm.props
│ ├── vsyasm.targets
│ └── vsyasm.xml
├── AES-master (1).zip
├── AES-master.zip
├── AES.rar
├── aestest (1).zip
├── AesTest_Fixbug
│ └── AesTest_Fixbug
│ └── AesTest
│ ├── AesCBC.cpp
│ ├── AesCBC.h
│ ├── AesTest.cpp
│ ├── AesTest.dsp
│ ├── AesTest.dsw
│ ├── AesTest.ncb
│ ├── AesTest.opt
│ ├── AesTest.plg
│ ├── AesTest.sdf
│ ├── AesTest.sln
│ ├── AesTest.suo
│ ├── AesTest.v11.suo
│ ├── AesTest.vcproj
│ ├── AesTest.vcxproj
│ ├── AesTest.vcxproj.filters
│ ├── Backup
│ │ ├── AesTest.sln
│ │ └── AesTest.v11.suo
│ ├── Debug
│ │ ├── AesCBC.obj
│ │ ├── AesTest.Build.CppClean.log
│ │ ├── AesTest.exe
│ │ ├── AesTest.lastbuildstate
│ │ ├── AesTest.log
│ │ ├── AesTest.obj
│ │ ├── AesTest.pch
│ │ ├── AesTest.pdb
│ │ ├── BuildLog.htm
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link-cvtres.read.1.tlog
│ │ ├── link-cvtres.write.1.tlog
│ │ ├── link-rc.read.1.tlog
│ │ ├── link-rc.write.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── StdAfx.obj
│ │ ├── TKBase64.obj
│ │ ├── vc110.idb
│ │ └── vc110.pdb
│ ├── ReadMe.txt
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── TKBase64.cpp
│ ├── TKBase64.h
│ ├── UpgradeLog.htm
│ ├── UpgradeLog.XML
│ └── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Error.png
│ ├── UpgradeReport_Information.png
│ ├── UpgradeReport_Success.png
│ ├── UpgradeReport_Warning.png
│ └── UpgradeReport.xslt
├── AesTest_Fixbug.rar
├── AesTest.zip
├── Crypto001_Week2-master.zip
├── tiny-AES128-C-master.zip
└── 生成的密钥.png
47 directories, 390 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论