Software APIs
Functions
ecc_p256.h File Reference

(78eccb1bc8)

P-256 elliptic curve operations for OpenTitan cryptography library. More...

#include "datatypes.h"

Go to the source code of this file.

Functions

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_keygen (otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key)
 Generates a key pair for ECDSA with curve P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_sign (const otcrypto_blinded_key_t *private_key, const otcrypto_hash_digest_t message_digest, otcrypto_word32_buf_t signature)
 Generates an ECDSA signature with curve P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_verify (const otcrypto_unblinded_key_t *public_key, const otcrypto_hash_digest_t message_digest, otcrypto_const_word32_buf_t signature, hardened_bool_t *verification_result)
 Verifies an ECDSA/P-256 signature. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256_keygen (otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key)
 Generates a key pair for ECDH with curve P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256 (const otcrypto_blinded_key_t *private_key, const otcrypto_unblinded_key_t *public_key, otcrypto_blinded_key_t *shared_secret)
 Elliptic Curve Diffie Hellman shared secret generation with curve P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_keygen_async_start (const otcrypto_blinded_key_t *private_key)
 Starts asynchronous key generation for ECDSA/P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_keygen_async_finalize (otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key)
 Finalizes asynchronous key generation for ECDSA/P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_sign_async_start (const otcrypto_blinded_key_t *private_key, const otcrypto_hash_digest_t message_digest)
 Starts asynchronous signature generation for ECDSA/P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_sign_async_finalize (otcrypto_word32_buf_t signature)
 Finalizes asynchronous signature generation for ECDSA/P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_verify_async_start (const otcrypto_unblinded_key_t *public_key, const otcrypto_hash_digest_t message_digest, otcrypto_const_word32_buf_t signature)
 Starts asynchronous signature verification for ECDSA/P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_verify_async_finalize (otcrypto_const_word32_buf_t signature, hardened_bool_t *verification_result)
 Finalizes asynchronous signature verification for ECDSA/P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256_keygen_async_start (const otcrypto_blinded_key_t *private_key)
 Starts asynchronous key generation for ECDH/P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256_keygen_async_finalize (otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key)
 Finalizes asynchronous key generation for ECDH/P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256_async_start (const otcrypto_blinded_key_t *private_key, const otcrypto_unblinded_key_t *public_key)
 Starts asynchronous shared secret generation for ECDH/P-256. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256_async_finalize (otcrypto_blinded_key_t *shared_secret)
 Finalizes asynchronous shared secret generation for ECDH/P-256. More...
 

Detailed Description

P-256 elliptic curve operations for OpenTitan cryptography library.

Includes ECDSA and ECDH.

Definition in file ecc_p256.h.

Function Documentation

◆ otcrypto_ecdh_p256()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256 ( const otcrypto_blinded_key_t private_key,
const otcrypto_unblinded_key_t public_key,
otcrypto_blinded_key_t shared_secret 
)

Elliptic Curve Diffie Hellman shared secret generation with curve P-256.

Parameters
private_keyPointer to the blinded private key (d) struct.
public_keyPointer to the unblinded public key (Q) struct.
[out]shared_secretPointer to generated blinded shared key struct.
Returns
Result of ECDH shared secret generation.

Definition at line 49 of file ecc_p256.c.

◆ otcrypto_ecdh_p256_async_finalize()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256_async_finalize ( otcrypto_blinded_key_t shared_secret)

Finalizes asynchronous shared secret generation for ECDH/P-256.

See otcrypto_ecdh_p256 for requirements on input values.

May block until the operation is complete.

Parameters
[out]shared_secretPointer to generated blinded shared key struct.
Returns
Result of async ECDH finalize operation.

Definition at line 451 of file ecc_p256.c.

◆ otcrypto_ecdh_p256_async_start()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256_async_start ( const otcrypto_blinded_key_t private_key,
const otcrypto_unblinded_key_t public_key 
)

Starts asynchronous shared secret generation for ECDH/P-256.

See otcrypto_ecdh_p256 for requirements on input values.

Parameters
private_keyPointer to the blinded private key (d) struct.
public_keyPointer to the unblinded public key (Q) struct.
Returns
Result of async ECDH start operation.

Definition at line 404 of file ecc_p256.c.

◆ otcrypto_ecdh_p256_keygen()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256_keygen ( otcrypto_blinded_key_t private_key,
otcrypto_unblinded_key_t public_key 
)

Generates a key pair for ECDH with curve P-256.

The caller should allocate and partially populate the blinded key struct, including populating the key configuration and allocating space for the keyblob. For a hardware-backed key, use the private key handle returned by otcrypto_hw_backed_key. Otherwise, the mode should indicate ECDH with P-256 and the keyblob should be 80 bytes. The value in the checksum field of the blinded key struct will be populated by the key generation function.

Parameters
[out]private_keyPointer to the blinded private key (d) struct.
[out]public_keyPointer to the unblinded public key (Q) struct.
Returns
Result of the ECDH key generation.

Definition at line 43 of file ecc_p256.c.

◆ otcrypto_ecdh_p256_keygen_async_finalize()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256_keygen_async_finalize ( otcrypto_blinded_key_t private_key,
otcrypto_unblinded_key_t public_key 
)

Finalizes asynchronous key generation for ECDH/P-256.

See otcrypto_ecdh_p256_keygen for requirements on input values.

May block until the operation is complete.

The caller should ensure that the private key configuration matches that passed to the _start function.

Parameters
[out]private_keyPointer to the blinded private key (d) struct.
[out]public_keyPointer to the unblinded public key (Q) struct.
Returns
Result of asynchronous ECDH keygen finalize operation.

Definition at line 387 of file ecc_p256.c.

◆ otcrypto_ecdh_p256_keygen_async_start()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdh_p256_keygen_async_start ( const otcrypto_blinded_key_t private_key)

Starts asynchronous key generation for ECDH/P-256.

See otcrypto_ecdh_p256_keygen for requirements on input values.

Parameters
private_keyDestination structure for private key, or key handle.
Returns
Result of asynchronous ECDH keygen start operation.

Definition at line 374 of file ecc_p256.c.

◆ otcrypto_ecdsa_p256_keygen()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_keygen ( otcrypto_blinded_key_t private_key,
otcrypto_unblinded_key_t public_key 
)

Generates a key pair for ECDSA with curve P-256.

The caller should allocate and partially populate the blinded key struct, including populating the key configuration and allocating space for the keyblob. For a hardware-backed key, use the private key handle returned by otcrypto_hw_backed_key. Otherwise, the mode should indicate ECDSA with P-256 and the keyblob should be 80 bytes. The value in the checksum field of the blinded key struct will be populated by the key generation function.

Parameters
[out]private_keyPointer to the blinded private key (d) struct.
[out]public_keyPointer to the unblinded public key (Q) struct.
Returns
Result of the ECDSA key generation.

Definition at line 17 of file ecc_p256.c.

◆ otcrypto_ecdsa_p256_keygen_async_finalize()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_keygen_async_finalize ( otcrypto_blinded_key_t private_key,
otcrypto_unblinded_key_t public_key 
)

Finalizes asynchronous key generation for ECDSA/P-256.

See otcrypto_ecdsa_p256_keygen for requirements on input values.

May block until the operation is complete.

The caller should ensure that the private key configuration matches that passed to the _start function.

Parameters
[out]private_keyPointer to the blinded private key (d) struct.
[out]public_keyPointer to the unblinded public key (Q) struct.
Returns
Result of asynchronous ECDSA keygen finalize operation.

Definition at line 216 of file ecc_p256.c.

◆ otcrypto_ecdsa_p256_keygen_async_start()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_keygen_async_start ( const otcrypto_blinded_key_t private_key)

Starts asynchronous key generation for ECDSA/P-256.

See otcrypto_ecdsa_p256_keygen for requirements on input values.

Parameters
private_keyDestination structure for private key, or key handle.
Returns
Result of asynchronous ECDSA keygen start operation.

Definition at line 84 of file ecc_p256.c.

◆ otcrypto_ecdsa_p256_sign()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_sign ( const otcrypto_blinded_key_t private_key,
const otcrypto_hash_digest_t  message_digest,
otcrypto_word32_buf_t  signature 
)

Generates an ECDSA signature with curve P-256.

The message digest must be exactly 256 bits (32 bytes) long, but may use any hash mode. The caller is responsible for ensuring that the security strength of the hash function is at least equal to the security strength of the curve, but in some cases it may be truncated. See FIPS 186-5 for details.

Parameters
private_keyPointer to the blinded private key (d) struct.
message_digestMessage digest to be signed (pre-hashed).
[out]signaturePointer to the signature struct with (r,s) values.
Returns
Result of the ECDSA signature generation.

Definition at line 23 of file ecc_p256.c.

◆ otcrypto_ecdsa_p256_sign_async_finalize()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_sign_async_finalize ( otcrypto_word32_buf_t  signature)

Finalizes asynchronous signature generation for ECDSA/P-256.

See otcrypto_ecdsa_p256_sign for requirements on input values.

May block until the operation is complete.

Parameters
[out]signaturePointer to the signature struct with (r,s) values.
Returns
Result of async ECDSA finalize operation.

Definition at line 304 of file ecc_p256.c.

◆ otcrypto_ecdsa_p256_sign_async_start()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_sign_async_start ( const otcrypto_blinded_key_t private_key,
const otcrypto_hash_digest_t  message_digest 
)

Starts asynchronous signature generation for ECDSA/P-256.

See otcrypto_ecdsa_p256_sign for requirements on input values.

Parameters
private_keyPointer to the blinded private key (d) struct.
message_digestMessage digest to be signed (pre-hashed).
Returns
Result of async ECDSA start operation.

Definition at line 235 of file ecc_p256.c.

◆ otcrypto_ecdsa_p256_verify()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_verify ( const otcrypto_unblinded_key_t public_key,
const otcrypto_hash_digest_t  message_digest,
otcrypto_const_word32_buf_t  signature,
hardened_bool_t verification_result 
)

Verifies an ECDSA/P-256 signature.

The message digest must be exactly 256 bits (32 bytes) long, but may use any hash mode. The caller is responsible for ensuring that the security strength of the hash function is at least equal to the security strength of the curve, but in some cases it may be truncated. See FIPS 186-5 for details.

The caller must check the verification_result parameter, NOT only the returned status code, to know if the signature passed verification. The status code, as for other operations, only indicates whether errors were encountered, and may return OK even when the signature is invalid.

Parameters
public_keyPointer to the unblinded public key (Q) struct.
message_digestMessage digest to be verified (pre-hashed).
signaturePointer to the signature to be verified.
[out]verification_resultWhether the signature passed verification.
Returns
Result of the ECDSA verification operation.

Definition at line 32 of file ecc_p256.c.

◆ otcrypto_ecdsa_p256_verify_async_finalize()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_verify_async_finalize ( otcrypto_const_word32_buf_t  signature,
hardened_bool_t verification_result 
)

Finalizes asynchronous signature verification for ECDSA/P-256.

See otcrypto_ecdsa_p256_verify for requirements on input values.

May block until the operation is complete.

The caller must check the verification_result parameter, NOT only the returned status code, to know if the signature passed verification. The status code, as for other operations, only indicates whether errors were encountered, and may return OK even when the signature is invalid.

Parameters
[out]verification_resultWhether the signature passed verification.
Returns
Result of async ECDSA verify finalize operation.

Definition at line 362 of file ecc_p256.c.

◆ otcrypto_ecdsa_p256_verify_async_start()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ecdsa_p256_verify_async_start ( const otcrypto_unblinded_key_t public_key,
const otcrypto_hash_digest_t  message_digest,
otcrypto_const_word32_buf_t  signature 
)

Starts asynchronous signature verification for ECDSA/P-256.

See otcrypto_ecdsa_p256_verify for requirements on input values.

Parameters
public_keyPointer to the unblinded public key (Q) struct.
message_digestMessage digest to be verified (pre-hashed).
signaturePointer to the signature to be verified.
Returns
Result of async ECDSA verify start function.

Definition at line 321 of file ecc_p256.c.