FD.io VPP  v20.09-64-g4f7b92f0a
Vector Packet Processing
wireguard_key.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Doc.ai and/or its affiliates.
3  * Copyright (c) 2005 Jouni Malinen <j@w1.fi>.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef __included_wg_convert_h__
18 #define __included_wg_convert_h__
19 
20 #include <stdbool.h>
21 #include <vlib/vlib.h>
22 
24 {
26 };
27 
29  const u8 secret_key[CURVE25519_KEY_SIZE],
30  const u8 basepoint[CURVE25519_KEY_SIZE]);
33  const u8 secret_key[CURVE25519_KEY_SIZE]);
34 
35 bool key_to_base64 (const u8 * src, size_t src_len, u8 * out);
36 bool key_from_base64 (const u8 * src, size_t src_len, u8 * out);
37 
38 #endif /* __included_wg_convert_h__ */
39 
40 /*
41  * fd.io coding-style-patch-verification: ON
42  *
43  * Local Variables:
44  * eval: (c-set-style "gnu")
45  * End:
46  */
vl_api_address_t src
Definition: gre.api:54
unsigned char u8
Definition: types.h:56
bool curve25519_gen_public(u8 public_key[CURVE25519_KEY_SIZE], const u8 secret_key[CURVE25519_KEY_SIZE])
Definition: wireguard_key.c:67
bool key_to_base64(const u8 *src, size_t src_len, u8 *out)
bool key_from_base64(const u8 *src, size_t src_len, u8 *out)
bool curve25519_gen_secret(u8 secret[CURVE25519_KEY_SIZE])
Definition: wireguard_key.c:85
curve25519_lengths
Definition: wireguard_key.h:23
bool curve25519_gen_shared(u8 shared_key[CURVE25519_KEY_SIZE], const u8 secret_key[CURVE25519_KEY_SIZE], const u8 basepoint[CURVE25519_KEY_SIZE])
Definition: wireguard_key.c:21