Skip to content
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

Allow bypassing ASN.1 processing of public key for ED25519 #2089

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Oct 8, 2024

  1. bootutil: Allow bypassing ASN.1 encoding for ED25519 key import

    The commit adds MCUBOOT_KEY_IMPORT_BYPASS_ASN configuration option
    that allows bypassing ASN.1 decoding of ED25519 public key, compiled
    into MCUboot.
    When the option is enabled the key will be accessed directly
    and ASN.1 processing is not compiled in, resulting in smaller
    footprint of MCUboot, at a cost of reduced detection of invalid
    key, i.e. public key designated for different method than
    compiled in.
    
    Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
    de-nordic committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    3bd36e1 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. zephyr: Add Kconfig option CONFIG_BOOT_KEY_IMPORT_BYPASS_ASN

    The option enables MCUboot configuration option
    MCUBOOT_KEY_IMPORT_BYPASS_ASN.
    
    Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
    de-nordic committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    86e26fa View commit details
    Browse the repository at this point in the history