1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
---|---|
2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | |
5 | #ifndef _FREEBL_H_ |
6 | #define _FREEBL_H_ |
7 | |
8 | #define X25519_PUBLIC_KEY_BYTES 32U |
9 | |
10 | /* deprecated */ |
11 | typedef enum { |
12 | ECPoint_Uncompressed, |
13 | ECPoint_XOnly, |
14 | ECPoint_Undefined |
15 | } ECPointEncoding; |
16 | |
17 | #endif /* _FREEBL_H_ */ |
18 |