mbed TLS v2.14.1
ecdh.h
Go to the documentation of this file.
1 
15 /*
16  * Copyright (C) 2006-2018, Arm Limited (or its affiliates), All Rights Reserved
17  * SPDX-License-Identifier: Apache-2.0
18  *
19  * Licensed under the Apache License, Version 2.0 (the "License"); you may
20  * not use this file except in compliance with the License.
21  * You may obtain a copy of the License at
22  *
23  * http://www.apache.org/licenses/LICENSE-2.0
24  *
25  * Unless required by applicable law or agreed to in writing, software
26  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
27  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28  * See the License for the specific language governing permissions and
29  * limitations under the License.
30  *
31  * This file is part of Mbed TLS (https://tls.mbed.org)
32  */
33 
34 #ifndef MBEDTLS_ECDH_H
35 #define MBEDTLS_ECDH_H
36 
37 #include "ecp.h"
38 
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 
46 typedef enum
47 {
51 
59 typedef struct mbedtls_ecdh_context
60 {
70 #if defined(MBEDTLS_ECP_RESTARTABLE)
71  int restart_enabled;
73 #endif
74 }
76 
98  int (*f_rng)(void *, unsigned char *, size_t),
99  void *p_rng );
100 
126  const mbedtls_ecp_point *Q, const mbedtls_mpi *d,
127  int (*f_rng)(void *, unsigned char *, size_t),
128  void *p_rng );
129 
136 
143 
169 int mbedtls_ecdh_make_params( mbedtls_ecdh_context *ctx, size_t *olen,
170  unsigned char *buf, size_t blen,
171  int (*f_rng)(void *, unsigned char *, size_t),
172  void *p_rng );
173 
192  const unsigned char **buf, const unsigned char *end );
193 
213  mbedtls_ecdh_side side );
214 
236 int mbedtls_ecdh_make_public( mbedtls_ecdh_context *ctx, size_t *olen,
237  unsigned char *buf, size_t blen,
238  int (*f_rng)(void *, unsigned char *, size_t),
239  void *p_rng );
240 
258  const unsigned char *buf, size_t blen );
259 
284 int mbedtls_ecdh_calc_secret( mbedtls_ecdh_context *ctx, size_t *olen,
285  unsigned char *buf, size_t blen,
286  int (*f_rng)(void *, unsigned char *, size_t),
287  void *p_rng );
288 
289 #if defined(MBEDTLS_ECP_RESTARTABLE)
290 
302 void mbedtls_ecdh_enable_restart( mbedtls_ecdh_context *ctx );
303 #endif /* MBEDTLS_ECP_RESTARTABLE */
304 
305 #ifdef __cplusplus
306 }
307 #endif
308 
309 #endif /* ecdh.h */