VirtualBox

source: vbox/trunk/src/libs/openssl-3.0.7/include/crypto/ecx.h@ 98133

最後變更 在這個檔案從98133是 97984,由 vboxsync 提交於 2 年 前

libs/openssl-3.0.7: Shut up pragma once warnings for internal headers. Added sed script for doing that. bugref:10317

檔案大小: 5.2 KB
 
1/*
2 * Copyright 2020-2021 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# ifndef RT_WITHOUT_PRAGMA_ONCE /* VBOX */
15# pragma once
16# endif /* VBOX */
17
18# include <openssl/opensslconf.h>
19
20# ifndef OPENSSL_NO_EC
21
22# include <openssl/core.h>
23# include <openssl/e_os2.h>
24# include <openssl/crypto.h>
25# include "internal/refcount.h"
26# include "crypto/types.h"
27
28# define X25519_KEYLEN 32
29# define X448_KEYLEN 56
30# define ED25519_KEYLEN 32
31# define ED448_KEYLEN 57
32
33# define MAX_KEYLEN ED448_KEYLEN
34
35# define X25519_BITS 253
36# define X25519_SECURITY_BITS 128
37
38# define X448_BITS 448
39# define X448_SECURITY_BITS 224
40
41# define ED25519_BITS 256
42/* RFC8032 Section 8.5 */
43# define ED25519_SECURITY_BITS 128
44# define ED25519_SIGSIZE 64
45
46# define ED448_BITS 456
47/* RFC8032 Section 8.5 */
48# define ED448_SECURITY_BITS 224
49# define ED448_SIGSIZE 114
50
51
52typedef enum {
53 ECX_KEY_TYPE_X25519,
54 ECX_KEY_TYPE_X448,
55 ECX_KEY_TYPE_ED25519,
56 ECX_KEY_TYPE_ED448
57} ECX_KEY_TYPE;
58
59#define KEYTYPE2NID(type) \
60 ((type) == ECX_KEY_TYPE_X25519 \
61 ? EVP_PKEY_X25519 \
62 : ((type) == ECX_KEY_TYPE_X448 \
63 ? EVP_PKEY_X448 \
64 : ((type) == ECX_KEY_TYPE_ED25519 \
65 ? EVP_PKEY_ED25519 \
66 : EVP_PKEY_ED448)))
67
68struct ecx_key_st {
69 OSSL_LIB_CTX *libctx;
70 char *propq;
71 unsigned int haspubkey:1;
72 unsigned char pubkey[MAX_KEYLEN];
73 unsigned char *privkey;
74 size_t keylen;
75 ECX_KEY_TYPE type;
76 CRYPTO_REF_COUNT references;
77 CRYPTO_RWLOCK *lock;
78};
79
80size_t ossl_ecx_key_length(ECX_KEY_TYPE type);
81ECX_KEY *ossl_ecx_key_new(OSSL_LIB_CTX *libctx, ECX_KEY_TYPE type,
82 int haspubkey, const char *propq);
83void ossl_ecx_key_set0_libctx(ECX_KEY *key, OSSL_LIB_CTX *libctx);
84unsigned char *ossl_ecx_key_allocate_privkey(ECX_KEY *key);
85void ossl_ecx_key_free(ECX_KEY *key);
86int ossl_ecx_key_up_ref(ECX_KEY *key);
87ECX_KEY *ossl_ecx_key_dup(const ECX_KEY *key, int selection);
88
89int ossl_x25519(uint8_t out_shared_key[32], const uint8_t private_key[32],
90 const uint8_t peer_public_value[32]);
91void ossl_x25519_public_from_private(uint8_t out_public_value[32],
92 const uint8_t private_key[32]);
93
94int
95ossl_ed25519_public_from_private(OSSL_LIB_CTX *ctx, uint8_t out_public_key[32],
96 const uint8_t private_key[32],
97 const char *propq);
98int
99ossl_ed25519_sign(uint8_t *out_sig, const uint8_t *message, size_t message_len,
100 const uint8_t public_key[32], const uint8_t private_key[32],
101 OSSL_LIB_CTX *libctx, const char *propq);
102int
103ossl_ed25519_verify(const uint8_t *message, size_t message_len,
104 const uint8_t signature[64], const uint8_t public_key[32],
105 OSSL_LIB_CTX *libctx, const char *propq);
106
107int
108ossl_ed448_public_from_private(OSSL_LIB_CTX *ctx, uint8_t out_public_key[57],
109 const uint8_t private_key[57], const char *propq);
110int
111ossl_ed448_sign(OSSL_LIB_CTX *ctx, uint8_t *out_sig, const uint8_t *message,
112 size_t message_len, const uint8_t public_key[57],
113 const uint8_t private_key[57], const uint8_t *context,
114 size_t context_len, const char *propq);
115
116int
117ossl_ed448_verify(OSSL_LIB_CTX *ctx, const uint8_t *message, size_t message_len,
118 const uint8_t signature[114], const uint8_t public_key[57],
119 const uint8_t *context, size_t context_len, const char *propq);
120
121int
122ossl_x448(uint8_t out_shared_key[56], const uint8_t private_key[56],
123 const uint8_t peer_public_value[56]);
124void
125ossl_x448_public_from_private(uint8_t out_public_value[56],
126 const uint8_t private_key[56]);
127
128
129/* Backend support */
130typedef enum {
131 KEY_OP_PUBLIC,
132 KEY_OP_PRIVATE,
133 KEY_OP_KEYGEN
134} ecx_key_op_t;
135
136ECX_KEY *ossl_ecx_key_op(const X509_ALGOR *palg,
137 const unsigned char *p, int plen,
138 int pkey_id, ecx_key_op_t op,
139 OSSL_LIB_CTX *libctx, const char *propq);
140
141int ossl_ecx_public_from_private(ECX_KEY *key);
142int ossl_ecx_key_fromdata(ECX_KEY *ecx, const OSSL_PARAM params[],
143 int include_private);
144ECX_KEY *ossl_ecx_key_from_pkcs8(const PKCS8_PRIV_KEY_INFO *p8inf,
145 OSSL_LIB_CTX *libctx, const char *propq);
146
147ECX_KEY *ossl_evp_pkey_get1_X25519(EVP_PKEY *pkey);
148ECX_KEY *ossl_evp_pkey_get1_X448(EVP_PKEY *pkey);
149ECX_KEY *ossl_evp_pkey_get1_ED25519(EVP_PKEY *pkey);
150ECX_KEY *ossl_evp_pkey_get1_ED448(EVP_PKEY *pkey);
151# endif /* OPENSSL_NO_EC */
152#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette