AM64x MCU+ SDK  11.01.00
asym_crypt.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2024 Texas Instruments Incorporated
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the
14  * distribution.
15  *
16  * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
48 #ifndef ASYM_CRYPT_H_
49 #define ASYM_CRYPT_H_
50 
51 /* ========================================================================== */
52 /* Include Files */
53 /* ========================================================================== */
54 
55 #include <stdint.h>
56 #include <kernel/dpl/SystemP.h>
58 
59 #if defined (SOC_AM64X) || defined (SOC_AM243X)\
60  || defined(SOC_AM263X) || defined(SOC_AM263PX)\
61  || defined (SOC_AM273X) || defined (SOC_AWR294X)
62 #include <security_common/drivers/crypto/pka/pka.h>
63 #endif
64 
65 #if defined(SOC_F29H85X) || defined (SOC_AM261X)
66 #include <security_common/drivers/crypto/pke/hw_include/pke_hw/inc/pke.h>
67 #include <security_common/drivers/crypto/pke/hw_include/pke_hw/src/pke4_driver.h>
68 #include <security_common/drivers/crypto/pke/hw_include/pke_hw/inc/pke_dpasl.h>
69 #endif
70 
71 #ifdef __cplusplus
72 extern "C" {
73 #endif
74 
75 /* ========================================================================== */
76 /* Macros & Typedefs */
77 /* ========================================================================== */
78 
87 typedef enum AsymCrypt_Return_e
88 {
89  ASYM_CRYPT_RETURN_SUCCESS = 0xCEF6A572U,
90  ASYM_CRYPT_RETURN_FAILURE = 0xD20341DDU,
92 
100 typedef enum AsymCrypt_EdCurve_e
101 {
105 
107 typedef void *AsymCrypt_Handle;
108 
110 #define RSA_MAX_LENGTH (130U)
111 
113 #define ECDSA_MAX_LENGTH (18U)
114 
119 #define EC_PARAM_MAXLEN (68U)
120 
124 #define ASYM_CRYPT_LEN(bytelen) (((bytelen) / 4U) + 1U)
125 
127 #define RSA_KEY_E_MAXLEN (8U)
128 
129 #define RSA_KEY_N_MAXLEN (520U)
130 
131 #define RSA_KEY_PQ_MAXLEN ((RSA_KEY_N_MAXLEN / 2U) + 4U)
132 
133 #define RSA_SIG_MAXLEN RSA_KEY_N_MAXLEN
134 
136 #define EDDSA_MAX_KEY_LEN (57U)
137 
139 #define EDDSA_MAX_BIGINT_LEN ASYM_CRYPT_LEN(EDDSA_MAX_KEY_LEN - 1U)
140 
142 #define EDDSA_ED25519_KEY_LEN (32U)
143 
145 #define EDDSA_ED448_KEY_LEN (57U)
146 
148 #define EDDSA_ED25519_HASH_LEN (64U)
149 
151 #define EDDSA_ED448_HASH_LEN (114U)
152 
153 /* ========================================================================== */
154 /* Structure Declarations */
155 /* ========================================================================== */
156 
169 };
170 
201 };
202 
214 };
215 
235  struct AsymCrypt_ECPoint g;
236 };
237 
260  struct AsymCrypt_ECPoint g;
261 };
262 
274 };
275 
287 };
288 
311  struct AsymCrypt_EddsaPoint g;
312 };
313 
325 };
326 
338 };
339 
340 /* ========================================================================== */
341 /* Global Variables */
342 /* ========================================================================== */
343 
344 /* ========================================================================== */
345 /* Function Definitions */
346 /* ========================================================================== */
347 
357 typedef AsymCrypt_Return_t (*AsymCrypt_ExecuteShaCallback)(uint8_t *in_addr, uint32_t length, uint8_t *sha_addr);
358 
366 
373 
389  const uint32_t m[RSA_MAX_LENGTH],
390  const struct AsymCrypt_RSAPrivkey *k,
391  uint32_t result[RSA_MAX_LENGTH]);
392 
407  const uint32_t m[RSA_MAX_LENGTH],
408  const struct AsymCrypt_RSAPubkey *k,
409  uint32_t result[RSA_MAX_LENGTH]);
410 
424  struct AsymCrypt_RSAPrivkey *k,
425  uint32_t keybitsize);
426 
440  const struct AsymCrypt_RSAPrivkey *privKey,
441  struct AsymCrypt_RSAPubkey *pubKey,
442  uint32_t keybitsize);
443 
458  const struct AsymCrypt_ECPrimeCurveP *cp,
459  const uint32_t priv[ECDSA_MAX_LENGTH],
460  const uint32_t k[ECDSA_MAX_LENGTH],
461  const uint32_t h[ECDSA_MAX_LENGTH],
462  struct AsymCrypt_ECDSASig *sig);
463 
478  const struct AsymCrypt_ECPrimeCurveP *cp,
479  const struct AsymCrypt_ECPoint *pub,
480  const struct AsymCrypt_ECDSASig *sig,
481  const uint32_t h[ECDSA_MAX_LENGTH]);
482 
494  const struct AsymCrypt_ECPrimeCurveP *cp,
495  uint32_t priv[ECDSA_MAX_LENGTH]);
496 
509  const struct AsymCrypt_ECPrimeCurveP *cp,
510  struct AsymCrypt_ECPoint *pub,
511  const uint32_t priv[ECDSA_MAX_LENGTH]);
512 
528  uint8_t privKey[EDDSA_MAX_KEY_LEN],
529  uint8_t pubKey[EDDSA_MAX_KEY_LEN],
530  AsymCrypt_EdCurveType_t input_curve);
531 
549  const struct AsymCrypt_EddsaKey *key,
550  const uint8_t *ptrData,
551  const uint32_t dataSizeByte,
552  struct AsymCrypt_EddsaSig *sig,
553  AsymCrypt_EdCurveType_t input_curve);
554 
572  const uint8_t pubKey[EDDSA_MAX_KEY_LEN],
573  const uint8_t *ptrData,
574  const uint32_t dataSizeByte,
575  const struct AsymCrypt_EddsaSig *sig,
576  AsymCrypt_EdCurveType_t input_curve);
577 
592  const struct AsymCrypt_ECPrimeCurveP *cp,
593  const uint32_t priv[ECDSA_MAX_LENGTH],
594  const struct AsymCrypt_ECPoint *pubKey,
595  struct AsymCrypt_ECPoint *ecShSecret);
596 
597 #ifdef __cplusplus
598 }
599 #endif
600 
601 #endif /* ASYM_CRYPT_H_ */
602 
AsymCrypt_ExecuteShaCallback
AsymCrypt_Return_t(* AsymCrypt_ExecuteShaCallback)(uint8_t *in_addr, uint32_t length, uint8_t *sha_addr)
This callback implemented to configure a SHA for EDDSA algorithms.
Definition: asym_crypt.h:357
AsymCrypt_EdCurveParam::d
uint32_t d[ASYM_CRYPT_LEN(EDDSA_MAX_KEY_LEN)]
Definition: asym_crypt.h:309
AsymCrypt_RSAPrivkey::n
uint32_t n[ASYM_CRYPT_LEN(RSA_KEY_N_MAXLEN)]
Definition: asym_crypt.h:186
AsymCrypt_RSAPrivkey::e
uint32_t e[ASYM_CRYPT_LEN(RSA_KEY_E_MAXLEN)]
Definition: asym_crypt.h:188
AsymCrypt_ECPrimeCurveP::b
uint32_t b[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:233
RSA_KEY_N_MAXLEN
#define RSA_KEY_N_MAXLEN
Definition: asym_crypt.h:129
AsymCrypt_close
AsymCrypt_Return_t AsymCrypt_close(AsymCrypt_Handle handle)
Function to close a AsymCrypt module specified by the AsymCrypt handle.
AsymCrypt_ECDSAKeyGenPrivate
AsymCrypt_Return_t AsymCrypt_ECDSAKeyGenPrivate(AsymCrypt_Handle handle, const struct AsymCrypt_ECPrimeCurveP *cp, uint32_t priv[ECDSA_MAX_LENGTH])
ECDSA KeyGen Private Key function.
ASYM_CRYPT_RETURN_SUCCESS
@ ASYM_CRYPT_RETURN_SUCCESS
Definition: asym_crypt.h:89
AsymCrypt_RSAPubkey::n
uint32_t n[ASYM_CRYPT_LEN(RSA_KEY_N_MAXLEN)]
Definition: asym_crypt.h:166
AsymCrypt_EddsaSig::R
uint8_t R[EDDSA_MAX_KEY_LEN]
Definition: asym_crypt.h:322
AsymCrypt_ECDSASig::s
uint32_t s[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:273
index
uint16_t index
Definition: tisci_rm_proxy.h:3
ECDSA_MAX_LENGTH
#define ECDSA_MAX_LENGTH
Definition: asym_crypt.h:113
SystemP.h
AsymCrypt_ECPrimeCurveP::prime
uint32_t prime[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:227
AsymCrypt_EdCurveParam::prime
uint32_t prime[ASYM_CRYPT_LEN(EDDSA_MAX_KEY_LEN)]
Definition: asym_crypt.h:301
AsymCrypt_ECPrimeCurveP::order
uint32_t order[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:229
AsymCrypt_ECMontCurveP::B
uint32_t B[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:258
AsymCrypt_RSAPrivkey::coefficient
uint32_t coefficient[ASYM_CRYPT_LEN(RSA_KEY_PQ_MAXLEN)]
Definition: asym_crypt.h:200
AsymCrypt_ECMontCurveP::prime
uint32_t prime[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:250
crypto_util.h
This file contains the prototype of crypto_util driver APIs.
AsymCrypt_ECDSASig::r
uint32_t r[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:271
AsymCrypt_ECPoint::x
uint32_t x[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:211
RSA_KEY_E_MAXLEN
#define RSA_KEY_E_MAXLEN
Definition: asym_crypt.h:127
AsymCrypt_EddsaSig::s
uint8_t s[EDDSA_MAX_KEY_LEN]
Definition: asym_crypt.h:324
AsymCrypt_RSAPubkey
RSA public key. All values are in biginteger format (size followed by word value array,...
Definition: asym_crypt.h:164
AsymCrypt_ECPrimeCurveP::a
uint32_t a[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:231
AsymCrypt_RSAPrivkey::q
uint32_t q[ASYM_CRYPT_LEN(RSA_KEY_PQ_MAXLEN)]
Definition: asym_crypt.h:194
AsymCrypt_EddsaPoint
Point on Eddsa Elliptical Curve.
Definition: asym_crypt.h:282
AsymCrypt_EcdhGenSharedSecret
AsymCrypt_Return_t AsymCrypt_EcdhGenSharedSecret(AsymCrypt_Handle handle, const struct AsymCrypt_ECPrimeCurveP *cp, const uint32_t priv[ECDSA_MAX_LENGTH], const struct AsymCrypt_ECPoint *pubKey, struct AsymCrypt_ECPoint *ecShSecret)
ECDSA verify primitive function.
AsymCrypt_RSAKeyGenPublic
AsymCrypt_Return_t AsymCrypt_RSAKeyGenPublic(AsymCrypt_Handle handle, const struct AsymCrypt_RSAPrivkey *privKey, struct AsymCrypt_RSAPubkey *pubKey, uint32_t keybitsize)
This Function performs Encryption or Verification operations.
AsymCrypt_EddsaSign
AsymCrypt_Return_t AsymCrypt_EddsaSign(AsymCrypt_Handle handle, AsymCrypt_ExecuteShaCallback shaCbFxn, const struct AsymCrypt_EddsaKey *key, const uint8_t *ptrData, const uint32_t dataSizeByte, struct AsymCrypt_EddsaSig *sig, AsymCrypt_EdCurveType_t input_curve)
EDDSA Signing primitive function.
AsymCrypt_ECDSASign
AsymCrypt_Return_t AsymCrypt_ECDSASign(AsymCrypt_Handle handle, const struct AsymCrypt_ECPrimeCurveP *cp, const uint32_t priv[ECDSA_MAX_LENGTH], const uint32_t k[ECDSA_MAX_LENGTH], const uint32_t h[ECDSA_MAX_LENGTH], struct AsymCrypt_ECDSASig *sig)
ECDSA sign primitive function.
AsymCrypt_EddsaPoint::x
uint32_t x[ASYM_CRYPT_LEN(EDDSA_MAX_KEY_LEN)]
Definition: asym_crypt.h:284
RSA_KEY_PQ_MAXLEN
#define RSA_KEY_PQ_MAXLEN
Definition: asym_crypt.h:131
AsymCrypt_ECMontCurveP::A
uint32_t A[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:256
AsymCrypt_EdCurveParam::order
uint32_t order[ASYM_CRYPT_LEN(EDDSA_MAX_KEY_LEN)]
Definition: asym_crypt.h:303
AsymCrypt_Handle
void * AsymCrypt_Handle
Handle to the AsymCrypt driver.
Definition: asym_crypt.h:107
AsymCrypt_ECDSAKeyGenPublic
AsymCrypt_Return_t AsymCrypt_ECDSAKeyGenPublic(AsymCrypt_Handle handle, const struct AsymCrypt_ECPrimeCurveP *cp, struct AsymCrypt_ECPoint *pub, const uint32_t priv[ECDSA_MAX_LENGTH])
ECDSA KeyGen Public Key function.
AsymCrypt_ECMontCurveP::g
struct AsymCrypt_ECPoint g
Definition: asym_crypt.h:260
AsymCrypt_EddsaVerify
AsymCrypt_Return_t AsymCrypt_EddsaVerify(AsymCrypt_Handle handle, AsymCrypt_ExecuteShaCallback shaCbFxn, const uint8_t pubKey[EDDSA_MAX_KEY_LEN], const uint8_t *ptrData, const uint32_t dataSizeByte, const struct AsymCrypt_EddsaSig *sig, AsymCrypt_EdCurveType_t input_curve)
ECDSA verify primitive function.
AsymCrypt_RSAKeyGenPrivate
AsymCrypt_Return_t AsymCrypt_RSAKeyGenPrivate(AsymCrypt_Handle handle, struct AsymCrypt_RSAPrivkey *k, uint32_t keybitsize)
This Function performs Encryption or Verification operations.
AsymCrypt_RSAPrivkey::p
uint32_t p[ASYM_CRYPT_LEN(RSA_KEY_PQ_MAXLEN)]
Definition: asym_crypt.h:192
AsymCrypt_ECPoint
EC Point, also the public key.
Definition: asym_crypt.h:209
ASYM_CRYPT_CURVE_TYPE_EDDSA_448
@ ASYM_CRYPT_CURVE_TYPE_EDDSA_448
Definition: asym_crypt.h:103
AsymCrypt_EddsaKey::pubKey
uint8_t pubKey[EDDSA_MAX_KEY_LEN]
Definition: asym_crypt.h:337
AsymCrypt_EdCurveParam::g
struct AsymCrypt_EddsaPoint g
Definition: asym_crypt.h:311
AsymCrypt_RSAPublic
AsymCrypt_Return_t AsymCrypt_RSAPublic(AsymCrypt_Handle handle, const uint32_t m[RSA_MAX_LENGTH], const struct AsymCrypt_RSAPubkey *k, uint32_t result[RSA_MAX_LENGTH])
This Function performs Encryption or Verification operations.
AsymCrypt_EddsaPoint::y
uint32_t y[ASYM_CRYPT_LEN(EDDSA_MAX_KEY_LEN)]
Definition: asym_crypt.h:286
AsymCrypt_ECMontCurveP::order
uint32_t order[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:252
EDDSA_MAX_KEY_LEN
#define EDDSA_MAX_KEY_LEN
Definition: asym_crypt.h:136
AsymCrypt_RSAPubkey::e
uint32_t e[ASYM_CRYPT_LEN(RSA_KEY_E_MAXLEN)]
Definition: asym_crypt.h:168
AsymCrypt_EddsaKey::privKey
uint8_t privKey[EDDSA_MAX_KEY_LEN]
Definition: asym_crypt.h:335
AsymCrypt_EdCurveParam::cofactor
uint32_t cofactor[ASYM_CRYPT_LEN(EDDSA_MAX_KEY_LEN)]
Definition: asym_crypt.h:305
AsymCrypt_ECPoint::y
uint32_t y[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:213
AsymCrypt_Return_t
AsymCrypt_Return_t
ASYM CRYPTO Driver Error code.
Definition: asym_crypt.h:88
AsymCrypt_EddsaKey
Eddsa EDDSA Private key - Public key pair in uint8 array form.
Definition: asym_crypt.h:333
AsymCrypt_ECPrimeCurveP::g
struct AsymCrypt_ECPoint g
Definition: asym_crypt.h:235
AsymCrypt_RSAPrivkey::dq
uint32_t dq[ASYM_CRYPT_LEN(RSA_KEY_PQ_MAXLEN)]
Definition: asym_crypt.h:198
AsymCrypt_RSAPrivkey
RSA private key. All values are in biginteger format (size followed by word value array,...
Definition: asym_crypt.h:184
AsymCrypt_ECMontCurveP::cofactor
uint32_t cofactor[ASYM_CRYPT_LEN(EC_PARAM_MAXLEN)]
Definition: asym_crypt.h:254
AsymCrypt_EddsaSig
Eddsa EDDSA signature.
Definition: asym_crypt.h:320
AsymCrypt_open
AsymCrypt_Handle AsymCrypt_open(uint32_t index)
Function to Open AsymCrypt instance, enable AsymCrypt engine, Initialize clocks.
ASYM_CRYPT_LEN
#define ASYM_CRYPT_LEN(bytelen)
Definition: asym_crypt.h:124
AsymCrypt_EdCurveParam
Structure to hold Edward Curve Eddsa parameters.
Definition: asym_crypt.h:299
AsymCrypt_ECDSAVerify
AsymCrypt_Return_t AsymCrypt_ECDSAVerify(AsymCrypt_Handle handle, const struct AsymCrypt_ECPrimeCurveP *cp, const struct AsymCrypt_ECPoint *pub, const struct AsymCrypt_ECDSASig *sig, const uint32_t h[ECDSA_MAX_LENGTH])
ECDSA verify primitive function.
AsymCrypt_EddsaGetPubKey
AsymCrypt_Return_t AsymCrypt_EddsaGetPubKey(AsymCrypt_Handle handle, AsymCrypt_ExecuteShaCallback shaCbFxn, uint8_t privKey[EDDSA_MAX_KEY_LEN], uint8_t pubKey[EDDSA_MAX_KEY_LEN], AsymCrypt_EdCurveType_t input_curve)
ECDSA KeyGen Public Key function.
ASYM_CRYPT_CURVE_TYPE_EDDSA_25519
@ ASYM_CRYPT_CURVE_TYPE_EDDSA_25519
Definition: asym_crypt.h:102
AsymCrypt_ECPrimeCurveP
EC prime curve parameters.
Definition: asym_crypt.h:225
AsymCrypt_ECMontCurveP
EC Montogomery curve parameters.
Definition: asym_crypt.h:248
AsymCrypt_RSAPrivate
AsymCrypt_Return_t AsymCrypt_RSAPrivate(AsymCrypt_Handle handle, const uint32_t m[RSA_MAX_LENGTH], const struct AsymCrypt_RSAPrivkey *k, uint32_t result[RSA_MAX_LENGTH])
This Function performs Decryption or Signing operations.
AsymCrypt_RSAPrivkey::dp
uint32_t dp[ASYM_CRYPT_LEN(RSA_KEY_PQ_MAXLEN)]
Definition: asym_crypt.h:196
ASYM_CRYPT_RETURN_FAILURE
@ ASYM_CRYPT_RETURN_FAILURE
Definition: asym_crypt.h:90
RSA_MAX_LENGTH
#define RSA_MAX_LENGTH
Definition: asym_crypt.h:110
AsymCrypt_ECDSASig
ECDSA signature.
Definition: asym_crypt.h:269
EC_PARAM_MAXLEN
#define EC_PARAM_MAXLEN
Definition: asym_crypt.h:119
AsymCrypt_EdCurveType_t
AsymCrypt_EdCurveType_t
ASYM EDDSA Curve Type.
Definition: asym_crypt.h:101
AsymCrypt_RSAPrivkey::d
uint32_t d[ASYM_CRYPT_LEN(RSA_KEY_N_MAXLEN)]
Definition: asym_crypt.h:190
AsymCrypt_EdCurveParam::a
uint32_t a[ASYM_CRYPT_LEN(EDDSA_MAX_KEY_LEN)]
Definition: asym_crypt.h:307