wireguard: initial implementation of wireguard protocol
[vpp.git] / src / plugins / wireguard / wireguard_key.h
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
23 enum curve25519_lengths
24 {
25   CURVE25519_KEY_SIZE = 32
26 };
27
28 bool curve25519_gen_shared (u8 shared_key[CURVE25519_KEY_SIZE],
29                             const u8 secret_key[CURVE25519_KEY_SIZE],
30                             const u8 basepoint[CURVE25519_KEY_SIZE]);
31 bool curve25519_gen_secret (u8 secret[CURVE25519_KEY_SIZE]);
32 bool curve25519_gen_public (u8 public_key[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  */