Skip to content

Releases: chipsalliance/caliptra-sw

release_v20230810_0

10 Aug 14:58
Compare
Choose a tag to compare
Mark KeyUsage extension as critical

release_v20230809_0

09 Aug 15:27
61b5fe6
Compare
Choose a tag to compare
Declare names for PCR IDs. (#616)

release_v20230804_0

04 Aug 16:07
497fe28
Compare
Choose a tag to compare
Add Trng::assume_init() function. (#594)

This unsafe function can be used to create a Trng if the caller is certain
Trng::new() has previously been called.

release_v20230729_0

29 Jul 13:10
Compare
Choose a tag to compare
Mark some funcs inline(always) (-168 bytes ROM size)

release_v20230728_1

29 Jul 02:28
Compare
Choose a tag to compare
Mark some funcs inline(always) (-168 bytes ROM size)

release_v20230728_0

28 Jul 13:09
d1b3cd8
Compare
Choose a tag to compare
Replace FPGA SOC adapter (#549)

release_v20230727_0

27 Jul 13:40
aa9b5ed
Compare
Choose a tag to compare
Runtime [feat] FIPS Version Command (#526)

* FIPS Version Command

* Add LibCaliptra Support for FIPS Version

---------

Co-authored-by: Fabrizio Damato <Fabrizio.Damato@amd.com>

release_v20230726_0

26 Jul 13:09
Compare
Choose a tag to compare
[fix] Directly write the manifest address to the datavault

release_v20230725_0

25 Jul 13:37
2d49ddc
Compare
Choose a tag to compare
Add some updates to CODEOWNERS (#530)

* Add some updates to CODEOWNERS

Adding some additional folks to the code owners file

* Adding jhand2 to x509

* Whitespace fix

---------

Co-authored-by: fdamato <83837719+fdamato@users.noreply.github.com>

release_v20230722_0

22 Jul 14:01
75e56cf
Compare
Choose a tag to compare
Libcaliptra (#496)

* libcaliptra

Derived from the api example in hw-model/c-binding/examples/api, this
is the initial skeleton of a more generic client API for Caliptra,
intended to abstract away the details of the implementation.

Client applications will include caliptra_api.h and implementations
will provide definitions to the functions declared in caliptra_if.h,
check the README.md for more information.

* Add support for integration with the model

This adds a generic reference to demonstrate client application use of the
Caliptra C API, and an example implementation of an interface, in this case
connecting the generic reference application to the hardware model.

Build happens from within the examples/hwmodel/ directory. Run `make` and then
run `./hwmodel` to execute the example.

This also removes the more basic if_test directory as it is now redundant