#include <zephyr/types.h>
#include <fw_info.h>
Go to the source code of this file.
|
typedef uint32_t | bl_sha256_ctx_t[256/4] |
|
typedef int(* | bl_root_of_trust_verify_t) (const uint8_t *public_key, const uint8_t *public_key_hash, const uint8_t *signature, const uint8_t *firmware, const uint32_t firmware_len) |
|
typedef int(* | bl_sha256_init_t) (bl_sha256_ctx_t *ctx) |
|
typedef int(* | bl_sha256_update_t) (bl_sha256_ctx_t *ctx, const uint8_t *data, uint32_t data_len) |
|
typedef int(* | bl_sha256_finalize_t) (bl_sha256_ctx_t *ctx, uint8_t *output) |
|
typedef int(* | bl_sha256_verify_t) (const uint8_t *data, uint32_t data_len, const uint8_t *expected) |
|
typedef int(* | bl_secp256r1_validate_t) (const uint8_t *hash, uint32_t hash_len, const uint8_t *signature, const uint8_t *public_key) |
|
|
int | bl_crypto_init (void) |
| Initialize bootloader crypto module.
|
|
int | bl_root_of_trust_verify (const uint8_t *public_key, const uint8_t *public_key_hash, const uint8_t *signature, const uint8_t *firmware, const uint32_t firmware_len) |
| Verify a signature using configured signature and SHA-256.
|
|
int | bl_root_of_trust_verify_external (const uint8_t *public_key, const uint8_t *public_key_hash, const uint8_t *signature, const uint8_t *firmware, const uint32_t firmware_len) |
| Implementation of rot_verify that is safe to be called from EXT_API.
|
|
int | bl_sha256_init (bl_sha256_ctx_t *ctx) |
| Initialize a sha256 operation context variable.
|
|
int | bl_sha256_update (bl_sha256_ctx_t *ctx, const uint8_t *data, uint32_t data_len) |
| Hash a portion of data.
|
|
int | bl_sha256_finalize (bl_sha256_ctx_t *ctx, uint8_t *output) |
| Finalize a hash result.
|
|
int | bl_sha256_verify (const uint8_t *data, uint32_t data_len, const uint8_t *expected) |
| Calculate a digest and verify it directly.
|
|
int | bl_secp256r1_validate (const uint8_t *hash, uint32_t hash_len, const uint8_t *signature, const uint8_t *public_key) |
| Validate a secp256r1 signature.
|
|