Secure boot for 32-bit Microcontrollers!
Go to file
Fabio Utzig 90abedc752 Add ECDSA-P256 key in PKCS#8 format
The ring crypto library used by the simulator only accepts PEM keys in
PKCS#8 format; this provides a conversion of the original bundled key.

```
$ openssl pkcs8 -topk8 -nocrypt -in ../root-ec-p256.pem -out ../root-ec-p256-pkcs8.pem
```

Signed-off-by: Fabio Utzig <utzig@apache.org>
2019-01-18 09:44:48 -07:00
boot boot: zephyr: pca10059: disable logging by default 2019-01-14 10:10:54 +01:00
docs doc: fix typo in file name 2019-01-14 15:00:35 -02:00
ext Update bundled ASN1 parser to Mbed-TLS 2.14.1 2019-01-03 11:22:05 -02:00
samples samples: mcuboot_config: introduce MCUBOOT_LOG_MODULE macros 2019-01-10 19:11:15 +01:00
scripts Allow bootstrap feature on CI 2019-01-12 14:38:18 -07:00
sim sim: Remove cfg on `verify_image` 2019-01-12 14:35:54 -07:00
testplan/mynewt Fix main github repo links in docs 2018-11-16 15:10:52 -03:00
.gitignore Add imgtool publishing support 2019-01-08 07:29:24 -02:00
.gitmodules sim: Move mbedtls into mcuboot-sys 2017-07-12 15:00:57 -06:00
.travis.yml Add ECDSA+KW testing to the CI 2019-01-03 11:22:05 -02:00
LICENSE Add mention to tinycrypt LICENSE in main LICENSE 2017-09-12 10:15:24 -06:00
NOTICE Add NOTICE file for mcuboot from ASF 2017-12-21 14:49:11 -07:00
README.md Fix main github repo links in docs 2018-11-16 15:10:52 -03:00
enc-aes128kw.b64 Add sample encryption keys 2018-10-12 13:36:13 -03:00
enc-rsa2048-priv.pem Add sample encryption keys 2018-10-12 13:36:13 -03:00
enc-rsa2048-pub.pem Add sample encryption keys 2018-10-12 13:36:13 -03:00
project.yml Update mynewt-core repo name 2018-08-03 15:31:39 -07:00
repository.yml Update mcuboot versions 2018-08-03 15:31:39 -07:00
root-ec-p256-pkcs8.pem Add ECDSA-P256 key in PKCS#8 format 2019-01-18 09:44:48 -07:00
root-ec-p256.pem zephyr: Support RSA, and ECDSA P-256 signing 2017-02-02 08:39:18 -07:00
root-rsa-2048.pem zephyr: Support RSA, and ECDSA P-256 signing 2017-02-02 08:39:18 -07:00
version.yml Mynewt: Add `version.yml` file 2018-10-17 16:35:03 -07:00

README.md

mcuboot

Coverity Scan Build Status Build/Test

This is mcuboot, version 1.2.0

MCUboot is a secure bootloader for 32-bit MCUs. The goal of MCUboot is to define a common infrastructure for the bootloader, system flash layout on microcontroller systems, and to provide a secure bootloader that enables easy software upgrade.

MCUboot is operating system and hardware independent and relies on hardware porting layers from the operating system it works with. Currently, mcuboot works with both the Apache Mynewt, and Zephyr operating systems, but more ports are planned in the future. RIOT is currently supported as a boot target with a complete port planned.

Using MCUboot

Instructions for different operating systems can be found here:

Roadmap

The issues being planned and worked on are tracked using GitHub issues. To participate please visit:

MCUBoot GitHub Issues

Issues were previously tracked on MCUboot JIRA , but it is now deprecated.

Browsing

Information and documentation on the bootloader are stored within the source.

It was previously also documented on confluence: MCUBoot Confluence however, it is now deprecated and not currently maintained

For more information in the source, here are some pointers:

  • boot/bootutil: The core of the bootloader itself.
  • boot/boot_serial: Support for serial upgrade within the bootloader itself.
  • boot/zephyr: Port of the bootloader to Zephyr
  • boot/mynewt: Mynewt bootloader app
  • imgtool: A tool to securely sign firmware images for booting by mcuboot.
  • sim: A bootloader simulator for testing and regression

Joining

Developers welcome!