1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
#ifndef ENCODER
# error Macro ENCODER undefined
#endif
ENCODER("RSA", "yes", "text", "private", rsa_priv_text_encoder_functions),
ENCODER("RSA", "yes", "text", "public", rsa_pub_text_encoder_functions),
ENCODER("RSA", "yes", "der", "private", rsa_priv_der_encoder_functions),
ENCODER("RSA", "yes", "der", "public", rsa_pub_der_encoder_functions),
ENCODER("RSA", "yes", "pem", "private", rsa_priv_pem_encoder_functions),
ENCODER("RSA", "yes", "pem", "public", rsa_pub_pem_encoder_functions),
ENCODER("RSA-PSS", "yes", "text", "private",
rsa_priv_text_encoder_functions),
ENCODER("RSA-PSS", "yes", "text", "public", rsa_pub_text_encoder_functions),
ENCODER("RSA-PSS", "yes", "der", "private", rsa_priv_der_encoder_functions),
ENCODER("RSA-PSS", "yes", "der", "public", rsa_pub_der_encoder_functions),
ENCODER("RSA-PSS", "yes", "pem", "private", rsa_priv_pem_encoder_functions),
ENCODER("RSA-PSS", "yes", "pem", "public", rsa_pub_pem_encoder_functions),
#ifndef OPENSSL_NO_DH
ENCODER("DH", "yes", "text", "private", dh_priv_text_encoder_functions),
ENCODER("DH", "yes", "text", "public", dh_pub_text_encoder_functions),
ENCODER("DH", "yes", "text", "parameters", dh_param_text_encoder_functions),
ENCODER("DH", "yes", "der", "private", dh_priv_der_encoder_functions),
ENCODER("DH", "yes", "der", "public", dh_pub_der_encoder_functions),
ENCODER("DH", "yes", "der", "parameters", dh_param_der_encoder_functions),
ENCODER("DH", "yes", "pem", "private", dh_priv_pem_encoder_functions),
ENCODER("DH", "yes", "pem", "public", dh_pub_pem_encoder_functions),
ENCODER("DH", "yes", "pem", "parameters", dh_param_pem_encoder_functions),
ENCODER("DHX", "yes", "text", "private", dh_priv_text_encoder_functions),
ENCODER("DHX", "yes", "text", "public", dh_pub_text_encoder_functions),
ENCODER("DHX", "yes", "text", "parameters", dh_param_text_encoder_functions),
ENCODER("DHX", "yes", "der", "private", dh_priv_der_encoder_functions),
ENCODER("DHX", "yes", "der", "public", dh_pub_der_encoder_functions),
ENCODER("DHX", "yes", "der", "parameters", dh_param_der_encoder_functions),
ENCODER("DHX", "yes", "pem", "private", dh_priv_pem_encoder_functions),
ENCODER("DHX", "yes", "pem", "public", dh_pub_pem_encoder_functions),
ENCODER("DHX", "yes", "pem", "parameters", dh_param_pem_encoder_functions),
#endif
#ifndef OPENSSL_NO_DSA
ENCODER("DSA", "yes", "text", "private", dsa_priv_text_encoder_functions),
ENCODER("DSA", "yes", "text", "public", dsa_pub_text_encoder_functions),
ENCODER("DSA", "yes", "text", "parameters",
dsa_param_text_encoder_functions),
ENCODER("DSA", "yes", "der", "private", dsa_priv_der_encoder_functions),
ENCODER("DSA", "yes", "der", "public", dsa_pub_der_encoder_functions),
ENCODER("DSA", "yes", "der", "parameters", dsa_param_der_encoder_functions),
ENCODER("DSA", "yes", "pem", "private", dsa_priv_pem_encoder_functions),
ENCODER("DSA", "yes", "pem", "public", dsa_pub_pem_encoder_functions),
ENCODER("DSA", "yes", "pem", "parameters", dsa_param_pem_encoder_functions),
#endif
#ifndef OPENSSL_NO_EC
ENCODER("X25519", "yes", "text", "private",
x25519_priv_print_encoder_functions),
ENCODER("X25519", "yes", "text", "public",
x25519_pub_print_encoder_functions),
ENCODER("X25519", "yes", "der", "private",
x25519_priv_der_encoder_functions),
ENCODER("X25519", "yes", "der", "public", x25519_pub_der_encoder_functions),
ENCODER("X25519", "yes", "pem", "private",
x25519_priv_pem_encoder_functions),
ENCODER("X25519", "yes", "pem", "public", x25519_pub_pem_encoder_functions),
ENCODER("X448", "no", "text", "private", x448_priv_print_encoder_functions),
ENCODER("X448", "no", "text", "public", x448_pub_print_encoder_functions),
ENCODER("X448", "no", "der", "private", x448_priv_der_encoder_functions),
ENCODER("X448", "no", "der", "public", x448_pub_der_encoder_functions),
ENCODER("X448", "no", "pem", "private", x448_priv_pem_encoder_functions),
ENCODER("X448", "no", "pem", "public", x448_pub_pem_encoder_functions),
ENCODER("ED25519", "yes", "text", "private",
ed25519_priv_print_encoder_functions),
ENCODER("ED25519", "yes", "text", "public",
ed25519_pub_print_encoder_functions),
ENCODER("ED25519", "yes", "der", "private",
ed25519_priv_der_encoder_functions),
ENCODER("ED25519", "yes", "der", "public",
ed25519_pub_der_encoder_functions),
ENCODER("ED25519", "yes", "pem", "private",
ed25519_priv_pem_encoder_functions),
ENCODER("ED25519", "yes", "pem", "public",
ed25519_pub_pem_encoder_functions),
ENCODER("ED448", "no", "text", "private",
ed448_priv_print_encoder_functions),
ENCODER("ED448", "no", "text", "public", ed448_pub_print_encoder_functions),
ENCODER("ED448", "no", "der", "private", ed448_priv_der_encoder_functions),
ENCODER("ED448", "no", "der", "public", ed448_pub_der_encoder_functions),
ENCODER("ED448", "no", "pem", "private", ed448_priv_pem_encoder_functions),
ENCODER("ED448", "no", "pem", "public", ed448_pub_pem_encoder_functions),
ENCODER("EC", "yes", "text", "private", ec_priv_text_encoder_functions),
ENCODER("EC", "yes", "text", "public", ec_pub_text_encoder_functions),
ENCODER("EC", "yes", "text", "parameters", ec_param_text_encoder_functions),
ENCODER("EC", "yes", "der", "private", ec_priv_der_encoder_functions),
ENCODER("EC", "yes", "der", "public", ec_pub_der_encoder_functions),
ENCODER("EC", "yes", "der", "parameters", ec_param_der_encoder_functions),
ENCODER("EC", "yes", "pem", "private", ec_priv_pem_encoder_functions),
ENCODER("EC", "yes", "pem", "public", ec_pub_pem_encoder_functions),
ENCODER("EC", "yes", "pem", "parameters", ec_param_pem_encoder_functions),
#endif
|