Add S390 support for provider based X25519/X448
[openssl.git] / include / crypto / ecx.h
1 /*
2  * Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /* Internal EC functions for other submodules: not for application use */
11
12 #ifndef OSSL_CRYPTO_ECX_H
13 # define OSSL_CRYPTO_ECX_H
14 # include <openssl/opensslconf.h>
15
16 # ifndef OPENSSL_NO_EC
17
18 #  include <openssl/e_os2.h>
19 #  include <openssl/crypto.h>
20 #  include "internal/refcount.h"
21
22 #  define X25519_KEYLEN        32
23 #  define X448_KEYLEN          56
24 #  define ED25519_KEYLEN       32
25 #  define ED448_KEYLEN         57
26
27 #  define MAX_KEYLEN  ED448_KEYLEN
28
29 #  define X25519_BITS          253
30 #  define X25519_SECURITY_BITS 128
31
32 #  define ED25519_SIGSIZE      64
33
34 #  define X448_BITS            448
35 #  define ED448_BITS           456
36 #  define X448_SECURITY_BITS   224
37
38 #  define ED448_SIGSIZE        114
39
40 struct ecx_key_st {
41     unsigned int haspubkey:1;
42     unsigned char pubkey[MAX_KEYLEN];
43     unsigned char *privkey;
44     size_t keylen;
45     CRYPTO_REF_COUNT references;
46     CRYPTO_RWLOCK *lock;
47 };
48
49 typedef struct ecx_key_st ECX_KEY;
50
51 ECX_KEY *ecx_key_new(size_t keylen, int haspubkey);
52 unsigned char *ecx_key_allocate_privkey(ECX_KEY *key);
53 void ecx_key_free(ECX_KEY *key);
54 int ecx_key_up_ref(ECX_KEY *key);
55
56 int X25519(uint8_t out_shared_key[32], const uint8_t private_key[32],
57            const uint8_t peer_public_value[32]);
58 void X25519_public_from_private(uint8_t out_public_value[32],
59                                 const uint8_t private_key[32]);
60
61 int X448(uint8_t out_shared_key[56], const uint8_t private_key[56],
62          const uint8_t peer_public_value[56]);
63 void X448_public_from_private(uint8_t out_public_value[56],
64                               const uint8_t private_key[56]);
65
66 int s390x_x25519_mul(unsigned char u_dst[32],
67                      const unsigned char u_src[32],
68                      const unsigned char d_src[32]);
69 int s390x_x448_mul(unsigned char u_dst[56],
70                    const unsigned char u_src[56],
71                    const unsigned char d_src[56]);
72
73 # endif /* OPENSSL_NO_EC */
74 #endif