diff options
Diffstat (limited to 'content/posts')
-rw-r--r-- | content/posts/2023-10-07-c11-fips203ipd.md | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/content/posts/2023-10-07-c11-fips203ipd.md b/content/posts/2023-10-07-c11-fips203ipd.md index aa45ca1..b32e47f 100644 --- a/content/posts/2023-10-07-c11-fips203ipd.md +++ b/content/posts/2023-10-07-c11-fips203ipd.md @@ -17,7 +17,8 @@ encapsulation mechanism (KEM)][kem]. initial public draft][fips203ipd]. * [C11][], no external dependencies (other than the standard library). * Test suite w/ common sanitizers enabled (`make test`). -* Doxygen-friendly API documentation (`fips203ipd.h`). +* Doxygen-friendly API documentation (`fips203ipd.h`). Also available + online [here][api-docs]. * short example application (`examples/0-hello-kem/`). [Git Repository][github] @@ -177,6 +178,10 @@ SUCCESS! alice secret `a_key` and bob secret `b_key` match. **Update (2023-10-10):** Fixed typos, added rationale to intro, and added a brief explanation to the example section. +**Update (2023-10-19):** Released v0.2 with documentation improvements, +speed improvements, a new example, and [online API +documentation][api-docs]. + [c11]: https://en.wikipedia.org/wiki/C11_(C_standard_revision) "ISO/IEC 9899:2011" [SHA-3]: https://en.wikipedia.org/wiki/SHA-3 @@ -205,3 +210,5 @@ added a brief explanation to the example section. "2023.10.03: The inability to count correctly, by Dan Bernstein." [djb]: https://en.wikipedia.org/wiki/Daniel_J._Bernstein "Daniel J. Bernstein" +[api-docs]: https://pmdn.org/api-docs/fips203ipd/ + "online API documentation" |