Line data Source code
1 : /* ec-ed25519.c - Ed25519 optimized elliptic curve functions
2 : * Copyright (C) 2013 g10 Code GmbH
3 : *
4 : * This file is part of Libgcrypt.
5 : *
6 : * Libgcrypt is free software; you can redistribute it and/or modify
7 : * it under the terms of the GNU Lesser General Public License as
8 : * published by the Free Software Foundation; either version 2.1 of
9 : * the License, or (at your option) any later version.
10 : *
11 : * Libgcrypt is distributed in the hope that it will be useful,
12 : * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : * GNU Lesser General Public License for more details.
15 : *
16 : * You should have received a copy of the GNU Lesser General Public
17 : * License along with this program; if not, see <http://www.gnu.org/licenses/>.
18 : */
19 :
20 : #include <config.h>
21 : #include <stdio.h>
22 : #include <stdlib.h>
23 : #include <errno.h>
24 :
25 : #include "mpi-internal.h"
26 : #include "longlong.h"
27 : #include "g10lib.h"
28 : #include "context.h"
29 : #include "ec-context.h"
30 :
31 :
32 : void
33 0 : _gcry_mpi_ec_ed25519_mod (gcry_mpi_t a)
34 : {
35 : (void)a;
36 :
37 0 : }
|