Import implementations of X25519 and X448 from Catacomb.
[secnet] / x448.h
1 /* -*-c-*-
2 *
3 * The X448 key-agreement algorithm
4 *
5 * (c) 2017 Straylight/Edgeware
6 */
7
8 /*----- Licensing notice --------------------------------------------------*
9 *
10 * This file is part of Catacomb.
11 *
12 * Catacomb is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
16 *
17 * Catacomb is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
21 *
22 * You should have received a copy of the GNU Library General Public
23 * License along with Catacomb; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 * MA 02111-1307, USA.
26 */
27
28 #ifndef CATACOMB_X448_H
29 #define CATACOMB_X448_H
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 /*----- Notes on the X448 key-agreement algorithm -------------------------*
36 *
37 * This is X448, as described in RFC7748, based on the elliptic curve defined
38 * in Mike Hamburg, `Ed448-Goldilocks, a new elliptic curve', EUROCRYPT 2016,
39 * https://eprint.iacr.org/2015/625/.
40 *
41 * The RFC-specified operation is simpler than the Diffie--Hellman function
42 * described in Hamburg's paper, since it doesn't involve the `Decaf'
43 * cofactor elimination procedure. Indeed, it looks very much like X25519
44 * with Hamburg's curve slotted in in place of Bernstein's.
45 */
46
47 /*----- Header files ------------------------------------------------------*/
48
49 #include <mLib/bits.h>
50
51 #ifndef CATACOMB_KEY_H
52 # include "key.h"
53 #endif
54
55 /*----- Key fetching ------------------------------------------------------*/
56
57 typedef struct x448_priv { key_bin priv, pub; } x448_priv;
58 typedef struct x448_pub { key_bin pub; } x448_pub;
59
60 extern const key_fetchdef x448_pubfetch[], x448_privfetch[];
61 #define X448_PUBFETCHSZ 3
62 #define X448_PRIVFETCHSZ 6
63
64 /*----- Important constants -----------------------------------------------*/
65
66 #define X448_KEYSZ 56
67 #define X448_PUBSZ 56
68 #define X448_OUTSZ 56
69
70 extern const octet x448_base[56];
71
72 /*----- Functions provided ------------------------------------------------*/
73
74 /* --- @x448@ --- *
75 *
76 * Arguments: @octet zz[X448_OUTSZ]@ = where to put the result
77 * @const octet k[X448_KEYSZ]@ = pointer to private key
78 * @const octet qx[X448_PUBSZ]@ = pointer to public value
79 *
80 * Returns: ---
81 *
82 * Use: Calculates X448 of @k@ and @qx@.
83 */
84
85 extern void x448(octet /*zz*/[X448_OUTSZ],
86 const octet /*k*/[X448_KEYSZ],
87 const octet /*qx*/[X448_PUBSZ]);
88
89 /*----- That's all, folks -------------------------------------------------*/
90
91 #ifdef __cplusplus
92 }
93 #endif
94
95 #endif