build: remove unnecessary executable bits
[vpp.git] / src / plugins / wireguard / wireguard_key.h
1 /*
2  * Copyright (c) 2020 Doc.ai and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #ifndef __included_wg_convert_h__
17 #define __included_wg_convert_h__
18
19 #include <stdbool.h>
20 #include <vlib/vlib.h>
21
22 enum curve25519_lengths
23 {
24   CURVE25519_KEY_SIZE = 32
25 };
26
27 bool curve25519_gen_shared (u8 shared_key[CURVE25519_KEY_SIZE],
28                             const u8 secret_key[CURVE25519_KEY_SIZE],
29                             const u8 basepoint[CURVE25519_KEY_SIZE]);
30 bool curve25519_gen_secret (u8 secret[CURVE25519_KEY_SIZE]);
31 bool curve25519_gen_public (u8 public_key[CURVE25519_KEY_SIZE],
32                             const u8 secret_key[CURVE25519_KEY_SIZE]);
33
34 bool key_to_base64 (const u8 * src, size_t src_len, u8 * out);
35 bool key_from_base64 (const u8 * src, size_t src_len, u8 * out);
36
37 #endif /* __included_wg_convert_h__ */
38
39 /*
40  * fd.io coding-style-patch-verification: ON
41  *
42  * Local Variables:
43  * eval: (c-set-style "gnu")
44  * End:
45  */