We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a930b41 commit bc0afcaCopy full SHA for bc0afca
examples/sha256/sha256.ino
@@ -23,11 +23,11 @@ void setup() {
23
sha256.update(buffer, sizeof(buffer));
24
sha256.finalize(sha);
25
26
- Serial.println(THEXT::encode(sha, sizeof(sha)));
+ Serial.println(hex::THEXT::encode(sha, sizeof(sha)));
27
28
/* One-shot */
29
SHA256::sha256(buffer, sizeof(buffer), sha);
30
31
}
32
33
void loop() { }
0 commit comments