初始版本
This commit is contained in:
7
external/infineon/examples/ecdsa_utils/README.md
vendored
Normal file
7
external/infineon/examples/ecdsa_utils/README.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# ECDSA Utils
|
||||
|
||||
This folder provides a small library with functions to convert between the raw
|
||||
ECDSA signature format and the ASN.1 encoding used in X.509 certificates.
|
||||
|
||||
It is used by the nrf5x PAL and provided here as example on how to implement
|
||||
this conversion.
|
||||
327
external/infineon/examples/ecdsa_utils/ecdsa_utils.c
vendored
Normal file
327
external/infineon/examples/ecdsa_utils/ecdsa_utils.c
vendored
Normal file
@@ -0,0 +1,327 @@
|
||||
/**
|
||||
* MIT License
|
||||
*
|
||||
* Copyright (c) 2019 Infineon Technologies AG
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE
|
||||
*
|
||||
*
|
||||
* \file ecdsa_utils.c
|
||||
*
|
||||
* \brief This file provides functions to convert raw r and s components of the ECDSA signature to asn1 encoding
|
||||
*
|
||||
*
|
||||
* \addtogroup grOptigaUtil
|
||||
* @{
|
||||
*/
|
||||
|
||||
#include "ecdsa_utils.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
// This implementation only supports a single byte LENGTH field. The maximum
|
||||
// possible value than can be encoded within a single byte is 0x7F (127 dec).
|
||||
// For higher values, the length must be coded in a multi-byte field.
|
||||
#define DER_INTEGER_MAX_LEN 0x7F
|
||||
|
||||
// This implementation only supports a single byte LENGTH field. The maximum
|
||||
// possible value than can be encoded within a single byte is 0x7F (127 dec).
|
||||
// For higher values, the length must be coded in a multi-byte field.
|
||||
#define DER_SEQUENCE_MAX_LEN 0x7F
|
||||
|
||||
// ASN.1 DER TAG field offset
|
||||
#define ASN1_DER_TAG_OFFSET 0
|
||||
|
||||
// ASN.1 DER LENGTH field offset
|
||||
#define ASN1_DER_LEN_OFFSET 1
|
||||
|
||||
// ASN.1 DER VALUE field offset
|
||||
// Only for this implementation!
|
||||
#define ASN1_DER_VAL_OFFSET 2
|
||||
|
||||
// ASN.1 DER Tag for INTEGER
|
||||
#define DER_TAG_INTEGER 0x02
|
||||
|
||||
// ASN.1 DER Tag for SEQUENCE
|
||||
#define DER_TAG_SEQUENCE 0x30
|
||||
|
||||
#define DER_UINT_MASK 0x80
|
||||
|
||||
/**
|
||||
* @brief Encodes a byte buffer as unsigned ASN.1 DER INTEGER
|
||||
*
|
||||
* @param data[in] Buffer containing the bytes to be encoded
|
||||
* @param data_len[in] Length of the data buffer
|
||||
* @param out_buf[out] Output buffer for the encoded ASN.1 bytes
|
||||
* @param out_buf_len[in] Size of the out_buf buffer
|
||||
* @return The number of bytes of the ASN.1 encoded stream on success, 0 on error
|
||||
* @note The parameters to this function must not be NULL.
|
||||
*/
|
||||
static size_t encode_der_integer(const uint8_t* data, size_t data_len,
|
||||
uint8_t* out_buf, size_t out_buf_len)
|
||||
{
|
||||
// all write access must be smaller or equal to this pointer
|
||||
const uint8_t* const out_end = out_buf + out_buf_len - 1;
|
||||
|
||||
// fixed position fields
|
||||
uint8_t* const tag_field = &out_buf[ASN1_DER_TAG_OFFSET];
|
||||
uint8_t* const length_field = &out_buf[ASN1_DER_LEN_OFFSET];
|
||||
uint8_t* const integer_field_start = &out_buf[ASN1_DER_VAL_OFFSET];
|
||||
|
||||
// write pointer
|
||||
uint8_t* integer_field_cur = integer_field_start;
|
||||
|
||||
// search for beginning of integer
|
||||
const uint8_t* cur_data = data;
|
||||
const uint8_t* const data_end = data + data_len;
|
||||
|
||||
// check if something to encode, else next loop condition overflows
|
||||
if (data_len == 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// don't check the last byte, it will always be a data byte
|
||||
for(; cur_data < (data_end - 1); cur_data++) {
|
||||
if (*cur_data != 0x00) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// check if stuffing byte needed
|
||||
if (*cur_data & DER_UINT_MASK) {
|
||||
integer_field_cur++;
|
||||
}
|
||||
|
||||
// calculate number of bytes left in data
|
||||
const size_t write_length = data_end - cur_data;
|
||||
// check if it fits in the output buffer
|
||||
if ((integer_field_cur + write_length - 1) > out_end) {
|
||||
// Prevented out-of-bounds write
|
||||
return 0;
|
||||
}
|
||||
|
||||
// ensure we can encode the length
|
||||
const size_t integer_len = (integer_field_cur + write_length) - integer_field_start;
|
||||
if (integer_len > DER_INTEGER_MAX_LEN) {
|
||||
// This implementation support single-byte LENGTH fields only
|
||||
return 0;
|
||||
}
|
||||
|
||||
// commit writes
|
||||
memcpy(integer_field_cur, cur_data, write_length);
|
||||
*tag_field = DER_TAG_INTEGER;
|
||||
*length_field = integer_len;
|
||||
// check if we have a stuffing byte, and explicitly zero it
|
||||
if (integer_field_cur != integer_field_start) {
|
||||
*integer_field_start = 0x00;
|
||||
}
|
||||
|
||||
return integer_len + ASN1_DER_VAL_OFFSET;
|
||||
}
|
||||
|
||||
bool ecdsa_rs_to_asn1_integers(const uint8_t* r, const uint8_t* s, size_t rs_len,
|
||||
uint8_t* asn_sig, size_t* asn_sig_len)
|
||||
{
|
||||
if (r == NULL || s == NULL || asn_sig == NULL || asn_sig_len == NULL) {
|
||||
// No NULL paramters allowed
|
||||
return false;
|
||||
}
|
||||
|
||||
// encode R component
|
||||
const size_t out_len_r = encode_der_integer(r, rs_len, asn_sig, *asn_sig_len);
|
||||
if (out_len_r == 0) {
|
||||
// error while encoding R as DER INTEGER
|
||||
return false;
|
||||
}
|
||||
|
||||
uint8_t* const s_start = asn_sig + out_len_r;
|
||||
const size_t s_len = *asn_sig_len - out_len_r;
|
||||
|
||||
// encode S component
|
||||
const size_t out_len_s = encode_der_integer(s, rs_len, s_start, s_len);
|
||||
if (out_len_s == 0) {
|
||||
// error while encoding S as DER INTEGER
|
||||
return false;
|
||||
}
|
||||
|
||||
*asn_sig_len = out_len_r + out_len_s;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ecdsa_rs_to_asn1_signature(const uint8_t* r, const uint8_t* s, size_t rs_len,
|
||||
uint8_t* asn_sig, size_t* asn_sig_len)
|
||||
{
|
||||
if (r == NULL || s == NULL || asn_sig == NULL || asn_sig_len == NULL) {
|
||||
// No NULL paramters allowed
|
||||
return false;
|
||||
}
|
||||
|
||||
if (*asn_sig_len < ASN1_DER_VAL_OFFSET) {
|
||||
// Not enough space, can't encode anything
|
||||
return false;
|
||||
}
|
||||
|
||||
// fixed position fields
|
||||
uint8_t* const tag_field = &asn_sig[ASN1_DER_TAG_OFFSET];
|
||||
uint8_t* const length_field = &asn_sig[ASN1_DER_LEN_OFFSET];
|
||||
uint8_t* const value_field_start = &asn_sig[ASN1_DER_VAL_OFFSET];
|
||||
|
||||
// compute size left after SEQUENCE header TAG and LENGTH fields
|
||||
size_t integers_len = *asn_sig_len - ASN1_DER_VAL_OFFSET;
|
||||
|
||||
if (!ecdsa_rs_to_asn1_integers(r, s, rs_len, value_field_start, &integers_len)) {
|
||||
// Failed to encode R and S as INTEGERs
|
||||
return false;
|
||||
}
|
||||
|
||||
if (integers_len > DER_SEQUENCE_MAX_LEN) {
|
||||
// This implementation support single-byte LENGTH fields only
|
||||
return false;
|
||||
}
|
||||
|
||||
// write SEQUENCE header
|
||||
*tag_field = DER_TAG_SEQUENCE;
|
||||
*length_field = integers_len;
|
||||
*asn_sig_len = integers_len + ASN1_DER_VAL_OFFSET;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Decodes an ASN.1 encoded integer to a byte buffer
|
||||
*
|
||||
* @param asn1[in] Buffer containing the ASN.1 encoded data
|
||||
* @param asn1_len[in] Length of the asn1 buffer
|
||||
* @param out_int[out] Output buffer for the decoded integer bytes
|
||||
* @param out_int_len[in,out] Size of the out_int buffer, contains the number of written bytes afterwards
|
||||
* @return The number of bytes advanced in the ASN.1 stream on success, 0 on failure
|
||||
* @note The parameters to this function must not be NULL.
|
||||
*/
|
||||
static size_t decode_asn1_uint(const uint8_t* asn1, size_t asn1_len,
|
||||
uint8_t* out_int, size_t* out_int_len)
|
||||
{
|
||||
if (asn1_len < (ASN1_DER_VAL_OFFSET + 1)) {
|
||||
// Not enough data to decode anything
|
||||
return 0;
|
||||
}
|
||||
|
||||
// all read access must be before this pointer
|
||||
const uint8_t* const asn1_end = asn1 + asn1_len;
|
||||
|
||||
// fixed position fields
|
||||
const uint8_t* const tag_field = &asn1[ASN1_DER_TAG_OFFSET];
|
||||
const uint8_t* const length_field = &asn1[ASN1_DER_LEN_OFFSET];
|
||||
|
||||
if (*tag_field != DER_TAG_INTEGER) {
|
||||
// Not an DER INTEGER
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (*length_field == 0 || *length_field > DER_INTEGER_MAX_LEN) {
|
||||
// Invalid length value
|
||||
return 0;
|
||||
}
|
||||
|
||||
uint8_t integer_length = *length_field;
|
||||
const uint8_t* integer_field_cur = &asn1[ASN1_DER_VAL_OFFSET];
|
||||
|
||||
if ((integer_field_cur + integer_length - 1) > (asn1_end - 1)) {
|
||||
// prevented out-of-bounds read
|
||||
return 0;
|
||||
}
|
||||
|
||||
// one byte can never be a stuffing byte
|
||||
if (integer_length > 1) {
|
||||
if (*integer_field_cur == 0x00) {
|
||||
// remove stuffing byte
|
||||
integer_length--;
|
||||
integer_field_cur++;
|
||||
}
|
||||
|
||||
if (*integer_field_cur == 0x00) {
|
||||
// second zero byte is an encoding error
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
if (integer_length > *out_int_len) {
|
||||
// prevented out-of-bounds write
|
||||
return 0;
|
||||
}
|
||||
|
||||
// insert padding zeros to ensure position of least significant byte matches
|
||||
const size_t padding = *out_int_len - integer_length;
|
||||
memset(out_int, 0, padding);
|
||||
|
||||
memcpy(out_int + padding, integer_field_cur, integer_length);
|
||||
*out_int_len = integer_length;
|
||||
|
||||
// return number of consumed ASN.1 bytes
|
||||
return integer_field_cur + integer_length - tag_field;
|
||||
}
|
||||
|
||||
bool asn1_to_ecdsa_rs_sep(const uint8_t* asn1, size_t asn1_len,
|
||||
uint8_t* r, size_t* r_len,
|
||||
uint8_t* s, size_t* s_len)
|
||||
{
|
||||
if (asn1 == NULL || r == NULL || r_len == NULL || s == NULL || s_len == NULL) {
|
||||
// No NULL paramters allowed
|
||||
return false;
|
||||
}
|
||||
|
||||
// decode R component
|
||||
const size_t consumed_r = decode_asn1_uint(asn1, asn1_len, r, r_len);
|
||||
if (consumed_r == 0) {
|
||||
// error while decoding R component
|
||||
return false;
|
||||
}
|
||||
|
||||
const uint8_t* const asn1_s = asn1 + consumed_r;
|
||||
const size_t asn1_s_len = asn1_len - consumed_r;
|
||||
|
||||
// decode S component
|
||||
const size_t consumed_s = decode_asn1_uint(asn1_s, asn1_s_len, s, s_len);
|
||||
if (consumed_s == 0) {
|
||||
// error while decoding R component
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool asn1_to_ecdsa_rs(const uint8_t* asn1, size_t asn1_len,
|
||||
uint8_t* rs, size_t rs_len)
|
||||
{
|
||||
if (asn1 == NULL || rs == NULL || rs_len == 0) {
|
||||
// No NULL paramters allowed
|
||||
return false;
|
||||
}
|
||||
|
||||
if ((rs_len % 2) != 0) {
|
||||
// length of the output buffer must be 2 times the component size and even
|
||||
return false;
|
||||
}
|
||||
|
||||
const size_t component_length = rs_len / 2;
|
||||
size_t r_len = component_length;
|
||||
size_t s_len = component_length;
|
||||
|
||||
return asn1_to_ecdsa_rs_sep(asn1, asn1_len, rs, &r_len, rs + component_length, &s_len);
|
||||
}
|
||||
131
external/infineon/examples/ecdsa_utils/ecdsa_utils.h
vendored
Normal file
131
external/infineon/examples/ecdsa_utils/ecdsa_utils.h
vendored
Normal file
@@ -0,0 +1,131 @@
|
||||
/**
|
||||
* MIT License
|
||||
*
|
||||
* Copyright (c) 2018 Infineon Technologies AG
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE
|
||||
*
|
||||
*
|
||||
* \file ecdsa_utils.h
|
||||
*
|
||||
* \brief This file contains utilities for ECDSA signature encoding/decoding
|
||||
*
|
||||
*
|
||||
* \addtogroup grOptigaUtil
|
||||
* @{
|
||||
*/
|
||||
#ifndef _H_ECDSA_UTILS_H_
|
||||
#define _H_ECDSA_UTILS_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
// Encode two integers in DER format
|
||||
// TAG + LENGTH needs 2 bytes for this implementation.
|
||||
// If the highest bit of the integer is set we need an extra byte.
|
||||
/** @brief Maximum overhead of the ASN.1 encoding for the R and S components as concatenated DER INTEGERs */
|
||||
#define ECDSA_RS_MAX_ASN1_OVERHEAD ((2 + 1) * 2)
|
||||
|
||||
// Encode two integers as SEQUENCE of INTEGERs in DER format
|
||||
// TAG + LENGTH fields need 2 bytes and if the highest bit of the integer is set,
|
||||
// we need an extra byte, so we have 3 bytes overhead per INTEGER.
|
||||
// SEQUENCE encoding needs an addtional 2 bytes overhead, for TAG + LENGTH fields.
|
||||
// By limiting the LENGTH field to one byte, we are limited to 127 bytes for the two DER INTEGERS,
|
||||
// this allows a maximum of 60 bytes per R and S component which is sufficient for the
|
||||
// NIST P-256 and NIST P-384 curves we deal with.
|
||||
/** @brief Maximum overhead of the ASN.1 encoding for the R and S components as SEQUENCE of INTEGERs */
|
||||
#define ECDSA_SIGNATURE_MAX_ASN1_OVERHEAD (ECDSA_RS_MAX_ASN1_OVERHEAD + 2)
|
||||
|
||||
/**
|
||||
* @brief Encodes the ECDSA signature components (r, s) as two concatenated ASN.1 INTEGERs. This is the format
|
||||
* the OPTIGA hostcode expects.
|
||||
*
|
||||
* @param[in] r Component R of the ECDSA signature
|
||||
* @param[in] s Component S of the ECDSA signature
|
||||
* @param[in] rs_len Length of each buffer for the R and S components of the ECDSA signature, must be smaller than 127
|
||||
* @param[out] asn_sig Buffer where the ASN.1 encoded result will be stored
|
||||
* @param[out] asn_sig_len Length of the ASN.1 encoded data that was copied into the output buffer
|
||||
* @returns true on success, false on error
|
||||
* @note The output buffer must be at least 2*rs_len + ECDSA_SIGNATURE_MAX_ASN1_OVERHEAD to fit the result in all cases.
|
||||
* @note If the function returns false, all output values are invalid.
|
||||
*/
|
||||
bool ecdsa_rs_to_asn1_integers(const uint8_t* r, const uint8_t* s, size_t rs_len,
|
||||
uint8_t* asn_sig, size_t* asn_sig_len);
|
||||
/**
|
||||
* @brief Encodes the ECDSA signature components (r, s) as ASN.1 SEQUENCE of two INTEGERs. This is the format
|
||||
* mbedTLS and OpenSSL use.
|
||||
*
|
||||
* @param[in] r Component R of the ECDSA signature
|
||||
* @param[in] s Component S of the ECDSA signature
|
||||
* @param[in] rs_len Length of each buffer for the R and S components of the ECDSA signature, must be smaller than 127
|
||||
* @param[out] asn_sig Buffer where the ASN.1-encoded ECDSA signature will be stored
|
||||
* @param[out] asn_sig_len Length of the actual data that was copied into the output buffer
|
||||
* @returns true on success, false on error
|
||||
* @note The output buffer must be at least 2*rs_len + ECDSA_RS_MAX_ASN1_OVERHEAD to fit the result in all cases
|
||||
* @note If the function returns false, all output values are invalid.
|
||||
*/
|
||||
bool ecdsa_rs_to_asn1_signature(const uint8_t* r, const uint8_t* s, size_t rs_len,
|
||||
uint8_t* asn_sig, size_t* asn_sig_len);
|
||||
/**
|
||||
* @brief decodes two concatenated ASN.1 integers to the R and S components of an ECDSA signature
|
||||
* @param[in] asn1 Buffer containing the ASN.1 encoded R and S values as two concatenated DER INTEGERs
|
||||
* @param[in] asn1_len Length of the asn1 buffer
|
||||
* @param[out] rs Output buffer for the concatenated R and S values
|
||||
* @param[in] rs_len Length of the rs buffer
|
||||
* @returns true on success, false else
|
||||
* @note The R and S components will be padded with zeros in the output buffer and each component will take rs_len/2 bytes.
|
||||
* e.g.: [ (0x00) R | S ], where '|' denotes the border for half the rs buffer,
|
||||
* 'R' and 'S' the bytes of the R and S components and '(0x00)' one or multiple padding bytes
|
||||
* needed to completely fill the buffer.
|
||||
* If you need to know the exact length of R and S use asn1_to_ecdsa_rs_sep(...)
|
||||
* @note If the function returns false, all output values are invalid.
|
||||
*/
|
||||
bool asn1_to_ecdsa_rs(const uint8_t* asn1, size_t asn1_len,
|
||||
uint8_t* rs, size_t rs_len);
|
||||
|
||||
/**
|
||||
* @brief decodes two concatenated ASN.1 integers to the R and S components of an ECDSA signature with separate buffers for R and S
|
||||
* @param[in] asn1 Buffer containing the ASN.1 encoded R and S values as two concatenated DER INTEGERs
|
||||
* @param[in] asn1_len Length of the asn1 buffer
|
||||
* @param[out] r Output buffer for the R value
|
||||
* @param[in,out] r_len Length of the r buffer, contains the number of non padding bytes afterwards
|
||||
* @param[out] s Output buffer for the S value
|
||||
* @param[in,out] s_len Length of the s buffer, contains the number of non padding bytes afterwards
|
||||
* @returns true on success, false else
|
||||
* @note The r and s buffers will be padded at the least significant byte with zeros to the length of the buffer.
|
||||
* @note If the function returns false, all output values are invalid.
|
||||
*/
|
||||
bool asn1_to_ecdsa_rs_sep(const uint8_t* asn1, size_t asn1_len,
|
||||
uint8_t* r, size_t* r_len,
|
||||
uint8_t* s, size_t* s_len);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // _H_ECDSA_UTILS_H_
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
Reference in New Issue
Block a user