diff options
author | Paul Duncan <pabs@pablotron.org> | 2023-10-19 04:22:42 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2023-10-19 04:22:42 -0400 |
commit | e3a286889d97350186e37309304f6f5869d4e04a (patch) | |
tree | 45bada18d063f60b648e4ef0c8e77cdf922db17a /content | |
parent | a94d726a94f1a429b9a0ead1843f5280c4e16feb (diff) | |
download | pablotron.org-e3a286889d97350186e37309304f6f5869d4e04a.tar.bz2 pablotron.org-e3a286889d97350186e37309304f6f5869d4e04a.zip |
content/posts/2023-10-07-c11-fips203ipd.md: add v0.2
Diffstat (limited to 'content')
-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" |