1 /* crypto/ecdsa/ecdsa.h */ 2 /** 3 * \file crypto/ecdsa/ecdsa.h Include file for the OpenSSL ECDSA functions 4 * \author Written by Nils Larsch for the OpenSSL project 5 */ 6 /* ==================================================================== 7 * Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 16 * 2. Redistributions in binary form must reproduce the above copyright 17 * notice, this list of conditions and the following disclaimer in 18 * the documentation and/or other materials provided with the 19 * distribution. 20 * 21 * 3. All advertising materials mentioning features or use of this 22 * software must display the following acknowledgment: 23 * "This product includes software developed by the OpenSSL Project 24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 25 * 26 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 27 * endorse or promote products derived from this software without 28 * prior written permission. For written permission, please contact 29 * licensing@OpenSSL.org. 30 * 31 * 5. Products derived from this software may not be called "OpenSSL" 32 * nor may "OpenSSL" appear in their names without prior written 33 * permission of the OpenSSL Project. 34 * 35 * 6. Redistributions of any form whatsoever must retain the following 36 * acknowledgment: 37 * "This product includes software developed by the OpenSSL Project 38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" 39 * 40 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 41 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 44 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 46 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 47 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 51 * OF THE POSSIBILITY OF SUCH DAMAGE. 52 * ==================================================================== 53 * 54 * This product includes cryptographic software written by Eric Young 55 * (eay@cryptsoft.com). This product includes software written by Tim 56 * Hudson (tjh@cryptsoft.com). 57 * 58 */ 59 module deimos.openssl.ecdsa; 60 61 import deimos.openssl._d_util; 62 63 public import deimos.openssl.opensslconf; 64 65 version (OPENSSL_NO_ECDSA) { 66 static assert(false, "ECDSA is disabled."); 67 } 68 69 public import deimos.openssl.ec; 70 public import deimos.openssl.ossl_typ; 71 version(OPENSSL_NO_DEPRECATED) {} else { 72 public import deimos.openssl.bn; 73 } 74 75 extern (C): 76 nothrow: 77 78 struct ECDSA_SIG_st { 79 BIGNUM* r; 80 BIGNUM* s; 81 } 82 alias ECDSA_SIG_st ECDSA_SIG; 83 84 /** Allocates and initialize a ECDSA_SIG structure 85 * \return pointer to a ECDSA_SIG structure or NULL if an error occurred 86 */ 87 ECDSA_SIG* ECDSA_SIG_new(); 88 89 /** frees a ECDSA_SIG structure 90 * \param sig pointer to the ECDSA_SIG structure 91 */ 92 void ECDSA_SIG_free(ECDSA_SIG* sig); 93 94 /** DER encode content of ECDSA_SIG object (note: this function modifies* pp 95 * (*pp += length of the DER encoded signature)). 96 * \param sig pointer to the ECDSA_SIG object 97 * \param pp pointer to a ubyte pointer for the output or NULL 98 * \return the length of the DER encoded ECDSA_SIG object or 0 99 */ 100 int i2d_ECDSA_SIG(const(ECDSA_SIG)* sig, ubyte** pp); 101 102 /** Decodes a DER encoded ECDSA signature (note: this function changes* pp 103 * (*pp += len)). 104 * \param sig pointer to ECDSA_SIG pointer (may be NULL) 105 * \param pp memory buffer with the DER encoded signature 106 * \param len length of the buffer 107 * \return pointer to the decoded ECDSA_SIG structure (or NULL) 108 */ 109 ECDSA_SIG* d2i_ECDSA_SIG(ECDSA_SIG** sig, const(ubyte)** pp, c_long len); 110 111 /** Accessor for r and s fields of ECDSA_SIG 112 * \param sig pointer to ECDSA_SIG pointer 113 * \param pr pointer to BIGNUM pointer for r (may be NULL) 114 * \param ps pointer to BIGNUM pointer for s (may be NULL) 115 */ 116 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps); 117 118 /** Setter for r and s fields of ECDSA_SIG 119 * \param sig pointer to ECDSA_SIG pointer 120 * \param r pointer to BIGNUM for r (may be NULL) 121 * \param s pointer to BIGNUM for s (may be NULL) 122 */ 123 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s); 124 125 126 /** Computes the ECDSA signature of the given hash value using 127 * the supplied private key and returns the created signature. 128 * \param dgst pointer to the hash value 129 * \param dgst_len length of the hash value 130 * \param eckey EC_KEY object containing a private EC key 131 * \return pointer to a ECDSA_SIG structure or NULL if an error occurred 132 */ 133 ECDSA_SIG* ECDSA_do_sign(const(ubyte)* dgst,int dgst_len,EC_KEY* eckey); 134 135 /** Computes ECDSA signature of a given hash value using the supplied 136 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory). 137 * \param dgst pointer to the hash value to sign 138 * \param dgstlen length of the hash value 139 * \param kinv BIGNUM with a pre-computed inverse k (optional) 140 * \param rp BIGNUM with a pre-computed rp value (optioanl), 141 * see ECDSA_sign_setup 142 * \param eckey EC_KEY object containing a private EC key 143 * \return pointer to a ECDSA_SIG structure or NULL if an error occurred 144 */ 145 ECDSA_SIG* ECDSA_do_sign_ex(const(ubyte)* dgst, int dgstlen, 146 const(BIGNUM)* kinv, const(BIGNUM)* rp, EC_KEY* eckey); 147 148 /** Verifies that the supplied signature is a valid ECDSA 149 * signature of the supplied hash value using the supplied public key. 150 * \param dgst pointer to the hash value 151 * \param dgst_len length of the hash value 152 * \param sig ECDSA_SIG structure 153 * \param eckey EC_KEY object containing a public EC key 154 * \return 1 if the signature is valid, 0 if the signature is invalid 155 * and -1 on error 156 */ 157 int ECDSA_do_verify(const(ubyte)* dgst, int dgst_len, 158 const(ECDSA_SIG)* sig, EC_KEY* eckey); 159 160 const(ECDSA_METHOD)* ECDSA_OpenSSL(); 161 162 /** Sets the default ECDSA method 163 * \param meth new default ECDSA_METHOD 164 */ 165 void ECDSA_set_default_method(const(ECDSA_METHOD)* meth); 166 167 /** Returns the default ECDSA method 168 * \return pointer to ECDSA_METHOD structure containing the default method 169 */ 170 const(ECDSA_METHOD)* ECDSA_get_default_method(); 171 172 /** Sets method to be used for the ECDSA operations 173 * \param eckey EC_KEY object 174 * \param meth new method 175 * \return 1 on success and 0 otherwise 176 */ 177 int ECDSA_set_method(EC_KEY* eckey, const(ECDSA_METHOD)* meth); 178 179 /** Returns the maximum length of the DER encoded signature 180 * \param eckey EC_KEY object 181 * \return numbers of bytes required for the DER encoded signature 182 */ 183 int ECDSA_size(const(EC_KEY)* eckey); 184 185 /** Precompute parts of the signing operation 186 * \param eckey EC_KEY object containing a private EC key 187 * \param ctx BN_CTX object (optional) 188 * \param kinv BIGNUM pointer for the inverse of k 189 * \param rp BIGNUM pointer for x coordinate of k* generator 190 * \return 1 on success and 0 otherwise 191 */ 192 int ECDSA_sign_setup(EC_KEY* eckey, BN_CTX* ctx, BIGNUM** kinv, 193 BIGNUM** rp); 194 195 /** Computes ECDSA signature of a given hash value using the supplied 196 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory). 197 * \param type this parameter is ignored 198 * \param dgst pointer to the hash value to sign 199 * \param dgstlen length of the hash value 200 * \param sig memory for the DER encoded created signature 201 * \param siglen pointer to the length of the returned signature 202 * \param eckey EC_KEY object containing a private EC key 203 * \return 1 on success and 0 otherwise 204 */ 205 int ECDSA_sign(int type, const(ubyte)* dgst, int dgstlen, 206 ubyte* sig, uint* siglen, EC_KEY* eckey); 207 208 209 /** Computes ECDSA signature of a given hash value using the supplied 210 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory). 211 * \param type this parameter is ignored 212 * \param dgst pointer to the hash value to sign 213 * \param dgstlen length of the hash value 214 * \param sig buffer to hold the DER encoded signature 215 * \param siglen pointer to the length of the returned signature 216 * \param kinv BIGNUM with a pre-computed inverse k (optional) 217 * \param rp BIGNUM with a pre-computed rp value (optioanl), 218 * see ECDSA_sign_setup 219 * \param eckey EC_KEY object containing a private EC key 220 * \return 1 on success and 0 otherwise 221 */ 222 int ECDSA_sign_ex(int type, const(ubyte)* dgst, int dgstlen, 223 ubyte* sig, uint* siglen, const(BIGNUM)* kinv, 224 const(BIGNUM)* rp, EC_KEY* eckey); 225 226 /** Verifies that the given signature is valid ECDSA signature 227 * of the supplied hash value using the specified public key. 228 * \param type this parameter is ignored 229 * \param dgst pointer to the hash value 230 * \param dgstlen length of the hash value 231 * \param sig pointer to the DER encoded signature 232 * \param siglen length of the DER encoded signature 233 * \param eckey EC_KEY object containing a public EC key 234 * \return 1 if the signature is valid, 0 if the signature is invalid 235 * and -1 on error 236 */ 237 int ECDSA_verify(int type, const(ubyte)* dgst, int dgstlen, 238 const(ubyte)* sig, int siglen, EC_KEY* eckey); 239 240 /* the standard ex_data functions */ 241 int ECDSA_get_ex_new_index(c_long argl, void* argp, CRYPTO_EX_new 242 *new_func, CRYPTO_EX_dup* dup_func, CRYPTO_EX_free* free_func); 243 int ECDSA_set_ex_data(EC_KEY* d, int idx, void* arg); 244 void* ECDSA_get_ex_data(EC_KEY* d, int idx); 245 246 247 /* BEGIN ERROR CODES */ 248 /* The following lines are auto generated by the script mkerr.pl. Any changes 249 * made after this point may be overwritten when the script is next run. 250 */ 251 void ERR_load_ECDSA_strings(); 252 253 /* Error codes for the ECDSA functions. */ 254 255 /* Function codes. */ 256 enum ECDSA_F_ECDSA_CHECK = 104; 257 enum ECDSA_F_ECDSA_DATA_NEW_METHOD = 100; 258 enum ECDSA_F_ECDSA_DO_SIGN = 101; 259 enum ECDSA_F_ECDSA_DO_VERIFY = 102; 260 enum ECDSA_F_ECDSA_SIGN_SETUP = 103; 261 262 /* Reason codes. */ 263 enum ECDSA_R_BAD_SIGNATURE = 100; 264 enum ECDSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE = 101; 265 enum ECDSA_R_ERR_EC_LIB = 102; 266 enum ECDSA_R_MISSING_PARAMETERS = 103; 267 enum ECDSA_R_NEED_NEW_SETUP_VALUES = 106; 268 enum ECDSA_R_NON_FIPS_METHOD = 107; 269 enum ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED = 104; 270 enum ECDSA_R_SIGNATURE_MALLOC_FAILED = 105;