-
Notifications
You must be signed in to change notification settings - Fork 5
Prepare wolfCOSE 0.1.0 alpha release #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
aidangarske
wants to merge
1
commit into
wolfSSL:main
Choose a base branch
from
aidangarske:release-prep-v0.1.0
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,55 @@ | ||
| # wolfCOSE Release 0.1.0 (May 29, 2026) | ||
|
|
||
| Release 0.1.0 is the initial alpha release of wolfCOSE, a zero-allocation C | ||
| library implementing CBOR (RFC 8949) and COSE (RFC 9052/9053) on top of | ||
| wolfCrypt. As an alpha, the public API is not yet frozen and may change before | ||
| 1.0. | ||
|
|
||
| ## Vulnerabilities | ||
|
|
||
| * None. This is the initial release. | ||
|
|
||
| ## New Feature Additions | ||
|
|
||
| * CBOR engine implementing RFC 8949 encode/decode with no external dependency. | ||
| * All six COSE message types (RFC 9052): `COSE_Sign1`, `COSE_Sign`, | ||
| `COSE_Encrypt0`, `COSE_Encrypt`, `COSE_Mac0`, and `COSE_Mac`, including the | ||
| multi-signer, multi-recipient, and countersignature variants. | ||
| * 40 algorithms across signing, encryption, MAC, and key distribution | ||
| (RFC 9053): ES256/384/512, EdDSA (Ed25519/Ed448), PS256/384/512, | ||
| ML-DSA-44/65/87, AES-GCM (128/192/256), ChaCha20-Poly1305, AES-CCM variants, | ||
| HMAC-SHA256/384/512, AES-MAC, Direct, AES Key Wrap, and ECDH-ES+HKDF. | ||
| * Native post-quantum signatures: ML-DSA (FIPS 204) at all three security | ||
| levels, using the draft COSE algorithm IDs -48/-49/-50. | ||
| * Zero dynamic allocation: every operation uses caller-provided buffers. | ||
| * Path to FIPS 140-3 through wolfCrypt FIPS Certificate #4718 (sole crypto | ||
| dependency). | ||
| * `LIBWOLFCOSE_VERSION_STRING` / `LIBWOLFCOSE_VERSION_HEX` in | ||
| `wolfcose/version.h` for compile-time version checks. | ||
|
|
||
| ## Fixes | ||
|
|
||
| * None. This is the initial release. | ||
|
|
||
| ## Improvements/Optimizations | ||
|
|
||
| * Minimal footprint: 7.5 KB `.text` for a Sign1+ECC build, 25.6 KB for the full | ||
| 40-algorithm build, with zero `.data`/`.bss`. | ||
| * MISRA C:2012 and C:2023 checked. | ||
| * CI matrix covering Ubuntu/macOS, GCC 10-14 and Clang 14-18, ~240 algorithm | ||
| combination tests, static analysis (cppcheck, Clang analyzer, GCC | ||
| `-fanalyzer`), sanitizers (ASan/UBSan), Coverity, and a nightly wolfSSL | ||
| compatibility matrix. | ||
|
|
||
| --- | ||
|
|
||
| wolfCOSE 0.1.0 has been developed according to wolfSSL's development and QA | ||
| process (see | ||
| https://www.wolfssl.com/about/wolfssl-software-development-process-quality-assurance) | ||
| and successfully passed the quality criteria. | ||
|
|
||
| For additional vulnerability information visit the vulnerability page at | ||
| https://www.wolfssl.com/docs/security-vulnerabilities/ | ||
|
|
||
| Requires wolfSSL 5.8.0 or later as the crypto backend. See README.md for build | ||
| instructions. | ||
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.