1 | /* |
2 | * Generated by util/mkerr.pl DO NOT EDIT |
3 | * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. |
4 | * |
5 | * Licensed under the Apache License 2.0 (the "License"). You may not use |
6 | * this file except in compliance with the License. You can obtain a copy |
7 | * in the file LICENSE in the source distribution or at |
8 | * https://www.openssl.org/source/license.html |
9 | */ |
10 | |
11 | #include <openssl/err.h> |
12 | #include <openssl/storeerr.h> |
13 | |
14 | #ifndef OPENSSL_NO_ERR |
15 | |
16 | static const ERR_STRING_DATA OSSL_STORE_str_reasons[] = { |
17 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_AMBIGUOUS_CONTENT_TYPE), |
18 | "ambiguous content type" }, |
19 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_BAD_PASSWORD_READ), |
20 | "bad password read" }, |
21 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_ERROR_VERIFYING_PKCS12_MAC), |
22 | "error verifying pkcs12 mac" }, |
23 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_FINGERPRINT_SIZE_DOES_NOT_MATCH_DIGEST), |
24 | "fingerprint size does not match digest" }, |
25 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_INVALID_SCHEME), |
26 | "invalid scheme" }, |
27 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_IS_NOT_A), "is not a" }, |
28 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_LOADER_INCOMPLETE), |
29 | "loader incomplete" }, |
30 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_LOADING_STARTED), |
31 | "loading started" }, |
32 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_NOT_A_CERTIFICATE), |
33 | "not a certificate" }, |
34 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_NOT_A_CRL), "not a crl" }, |
35 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_NOT_A_KEY), "not a key" }, |
36 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_NOT_A_NAME), "not a name" }, |
37 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_NOT_PARAMETERS), |
38 | "not parameters" }, |
39 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_PASSPHRASE_CALLBACK_ERROR), |
40 | "passphrase callback error" }, |
41 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_PATH_MUST_BE_ABSOLUTE), |
42 | "path must be absolute" }, |
43 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_SEARCH_ONLY_SUPPORTED_FOR_DIRECTORIES), |
44 | "search only supported for directories" }, |
45 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_UI_PROCESS_INTERRUPTED_OR_CANCELLED), |
46 | "ui process interrupted or cancelled" }, |
47 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_UNREGISTERED_SCHEME), |
48 | "unregistered scheme" }, |
49 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_UNSUPPORTED_CONTENT_TYPE), |
50 | "unsupported content type" }, |
51 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_UNSUPPORTED_OPERATION), |
52 | "unsupported operation" }, |
53 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_UNSUPPORTED_SEARCH_TYPE), |
54 | "unsupported search type" }, |
55 | {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_URI_AUTHORITY_UNSUPPORTED), |
56 | "uri authority unsupported" }, |
57 | {0, NULL} |
58 | }; |
59 | |
60 | #endif |
61 | |
62 | int ERR_load_OSSL_STORE_strings(void) |
63 | { |
64 | #ifndef OPENSSL_NO_ERR |
65 | if (ERR_reason_error_string(OSSL_STORE_str_reasons[0].error) == NULL) |
66 | ERR_load_strings_const(OSSL_STORE_str_reasons); |
67 | #endif |
68 | return 1; |
69 | } |
70 | |