forked from DotBots/DotBot-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request DotBots#282 from aabadie/crypto_sw
crypto: add software sha256 and ed25519
- Loading branch information
Showing
25 changed files
with
1,808 additions
and
15 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,16 @@ | ||
## Software implementation | ||
|
||
### ed25519 signature implementation | ||
|
||
Source: https://github.com/ncme/c25519 | ||
License: Public Domain | ||
Credits: Daniel Beer <[email protected]> | ||
|
||
### SHA256 hash implementation | ||
|
||
Source: https://github.com/B-Con/crypto-algorithms | ||
License: Public Domain | ||
Credits: Brad Conte (brad AT bradconte.com) | ||
|
||
Algorithm specification can be found at | ||
http://csrc.nist.gov/publications/fips/fips180-2/fips180-2withchangenotice.pdf |
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
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
Oops, something went wrong.