blob: 853bc57b470b1d8b757aa4c83c30fe53e4b4fffb [file] [log] [blame]
Kenny Root9d422a52013-06-27 09:14:46 -07001/*
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. */
27extern const char* kKeystoreEngineId;
28
Kenny Root96427ba2013-08-16 14:02:41 -070029extern int dsa_key_handle;
30extern int rsa_key_handle;
31
Kenny Root9d422a52013-06-27 09:14:46 -070032/* Keyhandles for ENGINE metadata */
33int keyhandle_new(void*, void*, CRYPTO_EX_DATA* ad, int idx, long, void*);
34void keyhandle_free(void *, void *ptr, CRYPTO_EX_DATA*, int, long, void*);
35int keyhandle_dup(CRYPTO_EX_DATA* to, CRYPTO_EX_DATA*, void *ptrRef, int idx, long, void *);
36
Kenny Root96427ba2013-08-16 14:02:41 -070037/* For EC_EX_DATA stuff */
38void *ex_data_dup(void *);
39void ex_data_free(void *);
40void ex_data_clear_free(void *);
41
Kenny Root47041552013-09-06 22:47:54 -070042/* ECDSA */
43int ecdsa_register(ENGINE *);
44int ecdsa_pkey_setup(ENGINE *, EVP_PKEY*, const char*);
45
Kenny Root96427ba2013-08-16 14:02:41 -070046/* DSA */
47int dsa_register(ENGINE *);
48int dsa_pkey_setup(ENGINE *, EVP_PKEY*, const char*);
49
Kenny Root9d422a52013-06-27 09:14:46 -070050/* RSA */
51int rsa_register(ENGINE *);
52int rsa_pkey_setup(ENGINE *, EVP_PKEY*, const char*);