https://github.com/zheaoli/go_aes_ecb
support aes ecb
https://github.com/zheaoli/go_aes_ecb
Last synced: 7 months ago
JSON representation
support aes ecb
- Host: GitHub
- URL: https://github.com/zheaoli/go_aes_ecb
- Owner: Zheaoli
- License: apache-2.0
- Created: 2018-03-06T11:50:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-06T13:35:44.000Z (over 7 years ago)
- Last Synced: 2025-01-16T10:36:18.296Z (9 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go_aes_ecb
Golang support for AES/ECB Encrypt/DecryptAES 是通用的一种标准,已经进入 RFC ,参见 [RFC 3826](https://tools.ietf.org/html/rfc3826)
目前 AES 有这样几种加密方式
1. Electronic Codebook, ECB
2. Cipher Block Chaining CBC
3. Cipher Feedback CFB
4. Output Feedback OFB
5. Counter CTR
其中 Golang 出于一些考虑,废弃了对于 ECB 的支持,但是 AES/ECB 适用范围依旧比较广泛,所以自己做了一个库来实现一套