Changeset 94082 in vbox for trunk/src/libs/openssl-3.0.1/crypto/engine/tb_pkmeth.c
- Timestamp:
- Mar 3, 2022 7:17:34 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150325
- Location:
- trunk/src/libs/openssl-3.0.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.0.1
- Property svn:mergeinfo
-
old new 12 12 /vendor/openssl/1.1.1c:131722-131725 13 13 /vendor/openssl/1.1.1k:145841-145843 14 /vendor/openssl/3.0.1:150323-150324 15 /vendor/openssl/current:147554-150322
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.1/crypto/engine/tb_pkmeth.c
r91772 r94082 1 1 /* 2 * Copyright 2006-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some deprecated APIs */ 11 #include "internal/deprecated.h" 9 12 10 13 #include "eng_local.h" … … 64 67 ENGINE *ENGINE_get_pkey_meth_engine(int nid) 65 68 { 66 return engine_table_select(&pkey_meth_table, nid); 69 return ossl_engine_table_select(&pkey_meth_table, nid, 70 OPENSSL_FILE, OPENSSL_LINE); 67 71 } 68 72 … … 73 77 ENGINE_PKEY_METHS_PTR fn = ENGINE_get_pkey_meths(e); 74 78 if (!fn || !fn(e, &ret, NULL, nid)) { 75 ENGINEerr(ENGINE_F_ENGINE_GET_PKEY_METH, 76 ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD); 79 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD); 77 80 return NULL; 78 81 }
Note:
See TracChangeset
for help on using the changeset viewer.