Software APIs
ed25519.c
1 // Copyright lowRISC contributors (OpenTitan project).
2 // Licensed under the Apache License, Version 2.0, see LICENSE for details.
3 // SPDX-License-Identifier: Apache-2.0
4 
6 
7 #include "sw/device/lib/crypto/impl/status.h"
9 
10 // Module ID for status codes.
11 #define MODULE_ID MAKE_MODULE_ID('e', '2', '5')
12 
14  otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key) {
15  // TODO: Ed25519 is not yet implemented.
16  return OTCRYPTO_NOT_IMPLEMENTED;
17 }
18 
20  const otcrypto_blinded_key_t *private_key,
21  otcrypto_const_byte_buf_t input_message,
23  // TODO: Ed25519 is not yet implemented.
24  return OTCRYPTO_NOT_IMPLEMENTED;
25 }
26 
28  const otcrypto_unblinded_key_t *public_key,
29  otcrypto_const_byte_buf_t input_message,
31  hardened_bool_t *verification_result) {
32  // TODO: Ed25519 is not yet implemented.
33  return OTCRYPTO_NOT_IMPLEMENTED;
34 }
35 
37  const otcrypto_blinded_key_t *private_key) {
38  // TODO: Ed25519 is not yet implemented.
39  return OTCRYPTO_NOT_IMPLEMENTED;
40 }
41 
43  otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key) {
44  // TODO: Ed25519 is not yet implemented.
45  return OTCRYPTO_NOT_IMPLEMENTED;
46 }
47 
49  const otcrypto_blinded_key_t *private_key,
50  otcrypto_const_byte_buf_t input_message,
52  // TODO: Ed25519 is not yet implemented.
53  return OTCRYPTO_NOT_IMPLEMENTED;
54 }
55 
57  otcrypto_word32_buf_t signature) {
58  // TODO: Ed25519 is not yet implemented.
59  return OTCRYPTO_NOT_IMPLEMENTED;
60 }
61 
63  const otcrypto_unblinded_key_t *public_key,
64  otcrypto_const_byte_buf_t input_message,
66  otcrypto_const_word32_buf_t signature) {
67  // TODO: Ed25519 is not yet implemented.
68  return OTCRYPTO_NOT_IMPLEMENTED;
69 }
70 
72  hardened_bool_t *verification_result) {
73  // TODO: Ed25519 is not yet implemented.
74  return OTCRYPTO_NOT_IMPLEMENTED;
75 }