forked from simonratner/Arduino-SHA-256
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
12 lines (8 loc) · 708 Bytes
/
README
File metadata and controls
12 lines (8 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
This is a trimmed-down version of Peter Knight's excellent Cryptosuite library for Arduino, supporting secure hashing and hashed message authentication using SHA-256 and HMAC-SHA-256.
To help fit complex applications within the limited code space of the Arduino, this version strips out the SHA-1 functionality -- it wasn't required for my OpenSesame code.
https://github.com/Cathedrow/Cryptosuite
The original also contains a test suite and further exposition on the use of hash functions.
Installation:
Make a 'libraries' directory with your Arduino folder if you do not already have one.
Rename this folder 'Sha' and move it into that directory.
Restart Arduino IDE to rescan for new libraries.