-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc75277
commit bbbcc78
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
|
||
# Todo List | ||
|
||
*Somwehere to publically keep track of tasks.* | ||
|
||
--- | ||
|
||
## Software | ||
|
||
Algorithm | Baseline | RV32 | RV64 | ||
------------|----------|-------|-------------- | ||
AES | x | x | x | ||
SHA256 | x | x | x | ||
SHA512 | x | | x | ||
SHA3 | x | | | ||
SM3 | | | | ||
SM4 | | | | ||
|
||
- For SM4 example code, see | ||
[mjosaarinen / lwaes_isa](https://github.com/mjosaarinen/lwaes_isa/). | ||
|
||
- For SHA3 / RV32 SHA 512 and SM3 example code, see | ||
[mjosaarinen / lwsha_isa](https://github.com/mjosaarinen/lwsha_isa/). | ||
|
||
## Hardware | ||
|
||
**Individual Instructions / classes:** | ||
|
||
- [x] [Lut4](rtl/lut4) | ||
- [x] [AES RV32](rtl/aes/rv32) | ||
- [x] [AES RV64](rtl/aes/rv64) | ||
- [x] [SHA256](rtl/ssha256) | ||
- [x] [SHA512](rtl/ssha512) | ||
- [ ] SM3 | ||
- [ ] SM4 | ||
|
||
**Combined Instruction Classes:** | ||
|
||
- [ ] AES RV32 + SM4. | ||
- [ ] All SHA instructions. | ||
- [ ] Complete Crypto ISE Core "drop-in". | ||
|
||
|
||
## Public review checklist | ||
|
||
This is still being compiled by others in the foundation, but will include: | ||
|
||
- [ ] Compliance tests. | ||
- [ ] Formal Spec. | ||
- [ ] Human Spec. | ||
|