1 /* 2 * Copyright 2013 The Android Open Source Project 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution. 12 * 13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 16 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY 17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 20 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * 24 */ 25 26 /* For ENGINE method registration purposes. */ 27 extern const char* kKeystoreEngineId; 28 29 extern int dsa_key_handle; 30 extern int rsa_key_handle; 31 32 /* Keyhandles for ENGINE metadata */ 33 int keyhandle_new(void*, void*, CRYPTO_EX_DATA* ad, int idx, long, void*); 34 void keyhandle_free(void *, void *ptr, CRYPTO_EX_DATA*, int, long, void*); 35 int keyhandle_dup(CRYPTO_EX_DATA* to, CRYPTO_EX_DATA*, void *ptrRef, int idx, long, void *); 36 37 /* For EC_EX_DATA stuff */ 38 void *ex_data_dup(void *); 39 void ex_data_free(void *); 40 void ex_data_clear_free(void *); 41 42 /* ECDSA */ 43 int ecdsa_register(ENGINE *); 44 int ecdsa_pkey_setup(ENGINE *, EVP_PKEY*, const char*); 45 46 /* DSA */ 47 int dsa_register(ENGINE *); 48 int dsa_pkey_setup(ENGINE *, EVP_PKEY*, const char*); 49 50 /* RSA */ 51 int rsa_register(ENGINE *); 52 int rsa_pkey_setup(ENGINE *, EVP_PKEY*, const char*); 53