Software APIs
x25519.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('x', '2', '5')
12 
14  otcrypto_unblinded_key_t *public_key) {
15  // TODO: Connect X25519 operations to API.
16  return OTCRYPTO_NOT_IMPLEMENTED;
17 }
18 
20  const otcrypto_unblinded_key_t *public_key,
21  otcrypto_blinded_key_t *shared_secret) {
22  // TODO: Connect X25519 operations to API.
23  return OTCRYPTO_NOT_IMPLEMENTED;
24 }
25 
27  const otcrypto_blinded_key_t *private_key) {
28  // TODO: X25519 is not yet implemented.
29  return OTCRYPTO_NOT_IMPLEMENTED;
30 }
31 
33  otcrypto_blinded_key_t *private_key, otcrypto_unblinded_key_t *public_key) {
34  // TODO: X25519 is not yet implemented.
35  return OTCRYPTO_NOT_IMPLEMENTED;
36 }
37 
39  const otcrypto_blinded_key_t *private_key,
40  const otcrypto_unblinded_key_t *public_key) {
41  // TODO: X25519 is not yet implemented.
42  return OTCRYPTO_NOT_IMPLEMENTED;
43 }
44 
46  otcrypto_blinded_key_t *shared_secret) {
47  // TODO: X25519 is not yet implemented.
48  return OTCRYPTO_NOT_IMPLEMENTED;
49 }