Software APIs
Functions
x25519.h File Reference

(78eccb1bc8)

X25519 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_x25519_keygen (otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key)
 Generates a key pair for X25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_x25519 (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 Curve25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_x25519_keygen_async_start (const otcrypto_blinded_key_t *private_key)
 Starts asynchronous key generation for X25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_x25519_keygen_async_finalize (otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key)
 Finalizes the asynchronous key generation for X25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_x25519_async_start (const otcrypto_blinded_key_t *private_key, const otcrypto_unblinded_key_t *public_key)
 Starts asynchronous shared secret generation for X25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_x25519_async_finalize (otcrypto_blinded_key_t *shared_secret)
 Finalizes asynchronous shared secret generation for X25519. More...
 

Detailed Description

X25519 operations for OpenTitan cryptography library.

Definition in file x25519.h.

Function Documentation

◆ otcrypto_x25519()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_x25519 ( 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 Curve25519.

Parameters
private_keyPointer to blinded private key (u-coordinate).
public_keyPointer to the public scalar from the sender.
[out]shared_secretPointer to shared secret key (u-coordinate).
Returns
Result of the X25519 operation.

Definition at line 19 of file x25519.c.

◆ otcrypto_x25519_async_finalize()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_x25519_async_finalize ( otcrypto_blinded_key_t shared_secret)

Finalizes asynchronous shared secret generation for X25519.

See otcrypto_x25519 for requirements on input values.

May block until the operation is complete.

Parameters
[out]shared_secretPointer to shared secret key (u-coordinate).
Returns
Result of async X25519 finalize operation.

Definition at line 45 of file x25519.c.

◆ otcrypto_x25519_async_start()

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

Starts asynchronous shared secret generation for X25519.

See otcrypto_x25519 for requirements on input values.

Parameters
private_keyPointer to the blinded private key (u-coordinate).
public_keyPointer to the public scalar from the sender.
Returns
Result of the async X25519 start operation.

Definition at line 38 of file x25519.c.

◆ otcrypto_x25519_keygen()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_x25519_keygen ( otcrypto_blinded_key_t private_key,
otcrypto_unblinded_key_t public_key 
)

Generates a key pair for X25519.

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 X25519 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 struct.
[out]public_keyPointer to the unblinded public key struct.
Returns
Result of the X25519 key generation.

Definition at line 13 of file x25519.c.

◆ otcrypto_x25519_keygen_async_finalize()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_x25519_keygen_async_finalize ( otcrypto_blinded_key_t private_key,
otcrypto_unblinded_key_t public_key 
)

Finalizes the asynchronous key generation for X25519.

See otcrypto_x25519_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 struct.
[out]public_keyPointer to the unblinded public key struct.
Returns
Result of asynchronous ECDSA keygen finalize operation.

Definition at line 32 of file x25519.c.

◆ otcrypto_x25519_keygen_async_start()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_x25519_keygen_async_start ( const otcrypto_blinded_key_t private_key)

Starts asynchronous key generation for X25519.

See otcrypto_x25519_keygen for requirements on input values.

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

Definition at line 26 of file x25519.c.