Software APIs
Typedefs | Enumerations | Functions
ed25519.h File Reference

(78eccb1bc8)

Ed25519 operations for OpenTitan cryptography library. More...

#include "datatypes.h"

Go to the source code of this file.

Typedefs

typedef enum otcrypto_eddsa_sign_mode otcrypto_eddsa_sign_mode_t
 Hashing mode for EdDSA signatures. More...
 

Enumerations

enum  otcrypto_eddsa_sign_mode {
  kOtcryptoEddsaSignModeEddsa = 0xae1 ,
  kOtcryptoEddsaSignModeHashEddsa = 0x9a6
}
 Hashing mode for EdDSA signatures. More...
 

Functions

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_keygen (otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key)
 Generates a key pair for Ed25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_sign (const otcrypto_blinded_key_t *private_key, otcrypto_const_byte_buf_t input_message, otcrypto_eddsa_sign_mode_t sign_mode, otcrypto_word32_buf_t signature)
 Generates an Ed25519 digital signature. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_verify (const otcrypto_unblinded_key_t *public_key, otcrypto_const_byte_buf_t input_message, otcrypto_eddsa_sign_mode_t sign_mode, otcrypto_const_word32_buf_t signature, hardened_bool_t *verification_result)
 Verifies an Ed25519 signature. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_keygen_async_start (const otcrypto_blinded_key_t *private_key)
 Starts asynchronous key generation for Ed25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_keygen_async_finalize (otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key)
 Finalizes asynchronous key generation for Ed25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_sign_async_start (const otcrypto_blinded_key_t *private_key, otcrypto_const_byte_buf_t input_message, otcrypto_eddsa_sign_mode_t sign_mode, otcrypto_word32_buf_t signature)
 Starts asynchronous signature generation for Ed25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_sign_async_finalize (otcrypto_word32_buf_t signature)
 Finalizes asynchronous signature generation for Ed25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_verify_async_start (const otcrypto_unblinded_key_t *public_key, otcrypto_const_byte_buf_t input_message, otcrypto_eddsa_sign_mode_t sign_mode, otcrypto_const_word32_buf_t signature)
 Starts asynchronous signature verification for Ed25519. More...
 
OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_verify_async_finalize (hardened_bool_t *verification_result)
 Finalizes asynchronous signature verification for Ed25519. More...
 

Detailed Description

Ed25519 operations for OpenTitan cryptography library.

Definition in file ed25519.h.

Typedef Documentation

◆ otcrypto_eddsa_sign_mode_t

Hashing mode for EdDSA signatures.

Values are hardened.

Enumeration Type Documentation

◆ otcrypto_eddsa_sign_mode

Hashing mode for EdDSA signatures.

Values are hardened.

Definition at line 24 of file ed25519.h.

Function Documentation

◆ otcrypto_ed25519_keygen()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_keygen ( otcrypto_blinded_key_t private_key,
otcrypto_unblinded_key_t public_key 
)

Generates a key pair for Ed25519.

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 Ed25519 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 Ed25519 key generation.

Definition at line 13 of file ed25519.c.

◆ otcrypto_ed25519_keygen_async_finalize()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_keygen_async_finalize ( otcrypto_blinded_key_t private_key,
otcrypto_unblinded_key_t public_key 
)

Finalizes asynchronous key generation for Ed25519.

See otcrypto_ed25519_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 ed25519 keygen finalize operation.

Definition at line 42 of file ed25519.c.

◆ otcrypto_ed25519_keygen_async_start()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_keygen_async_start ( const otcrypto_blinded_key_t private_key)

Starts asynchronous key generation for Ed25519.

See otcrypto_ed25519_keygen for requirements on input values.

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

Definition at line 36 of file ed25519.c.

◆ otcrypto_ed25519_sign()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_sign ( const otcrypto_blinded_key_t private_key,
otcrypto_const_byte_buf_t  input_message,
otcrypto_eddsa_sign_mode_t  sign_mode,
otcrypto_word32_buf_t  signature 
)

Generates an Ed25519 digital signature.

Parameters
private_keyPointer to the blinded private key struct.
input_messageInput message to be signed.
sign_modeEdDSA signature hashing mode.
[out]signaturePointer to the EdDSA signature with (r,s) values.
Returns
Result of the Ed25519 signature generation.

Definition at line 19 of file ed25519.c.

◆ otcrypto_ed25519_sign_async_finalize()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_sign_async_finalize ( otcrypto_word32_buf_t  signature)

Finalizes asynchronous signature generation for Ed25519.

See otcrypto_ecdsa_p256_sign for requirements on input values.

May block until the operation is complete.

Parameters
[out]signaturePointer to the EdDSA signature to get (s) value.
Returns
Result of async Ed25519 finalize operation.

Definition at line 56 of file ed25519.c.

◆ otcrypto_ed25519_sign_async_start()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_sign_async_start ( const otcrypto_blinded_key_t private_key,
otcrypto_const_byte_buf_t  input_message,
otcrypto_eddsa_sign_mode_t  sign_mode,
otcrypto_word32_buf_t  signature 
)

Starts asynchronous signature generation for Ed25519.

See otcrypto_ed25519_sign for requirements on input values.

Parameters
private_keyPointer to the blinded private key struct.
input_messageInput message to be signed.
sign_modeEdDSA signature hashing mode.
[out]signaturePointer to the EdDSA signature to get (r) value.
Returns
Result of async Ed25519 start operation.

Definition at line 48 of file ed25519.c.

◆ otcrypto_ed25519_verify()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_verify ( const otcrypto_unblinded_key_t public_key,
otcrypto_const_byte_buf_t  input_message,
otcrypto_eddsa_sign_mode_t  sign_mode,
otcrypto_const_word32_buf_t  signature,
hardened_bool_t verification_result 
)

Verifies an Ed25519 signature.

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 struct.
input_messageInput message to be signed for verification.
sign_modeEdDSA signature hashing mode.
signaturePointer to the signature to be verified.
[out]verification_resultWhether the signature passed verification.
Returns
Result of the Ed25519 verification operation.

Definition at line 27 of file ed25519.c.

◆ otcrypto_ed25519_verify_async_finalize()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_verify_async_finalize ( hardened_bool_t verification_result)

Finalizes asynchronous signature verification for Ed25519.

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 Ed25519 verification finalize operation.

Definition at line 71 of file ed25519.c.

◆ otcrypto_ed25519_verify_async_start()

OT_WARN_UNUSED_RESULT otcrypto_status_t otcrypto_ed25519_verify_async_start ( const otcrypto_unblinded_key_t public_key,
otcrypto_const_byte_buf_t  input_message,
otcrypto_eddsa_sign_mode_t  sign_mode,
otcrypto_const_word32_buf_t  signature 
)

Starts asynchronous signature verification for Ed25519.

See otcrypto_ecdsa_p256_verify for requirements on input values.

Parameters
public_keyPointer to the unblinded public key struct.
input_messageInput message to be signed for verification.
sign_modeEdDSA signature hashing mode.
signaturePointer to the signature to be verified.
Returns
Result of async Ed25519 verification start operation.

Definition at line 62 of file ed25519.c.