/* Written by Nils Larsch for the OpenSSL project. */ /* ==================================================================== * Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * [email protected]. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * ([email protected]). This product includes software written by Tim * Hudson ([email protected]). */ #include <openssl/ec.h> #include <limits.h> #include <string.h> #include <openssl/bytestring.h> #include <openssl/bn.h> #include <openssl/err.h> #include <openssl/mem.h> #include <openssl/nid.h> #include "../fipsmodule/ec/internal.h" #include "../bytestring/internal.h" #include "../internal.h" static const CBS_ASN1_TAG kParametersTag = …; static const CBS_ASN1_TAG kPublicKeyTag = …; // TODO(https://crbug.com/boringssl/497): Allow parsers to specify a list of // acceptable groups, so parsers don't have to pull in all four. ec_group_func; static const ec_group_func kAllGroups[] = …; EC_KEY *EC_KEY_parse_private_key(CBS *cbs, const EC_GROUP *group) { … } int EC_KEY_marshal_private_key(CBB *cbb, const EC_KEY *key, unsigned enc_flags) { … } // kPrimeFieldOID is the encoding of 1.2.840.10045.1.1. static const uint8_t kPrimeField[] = …; struct explicit_prime_curve { … }; static int parse_explicit_prime_curve(CBS *in, struct explicit_prime_curve *out) { … } // integers_equal returns one if |bytes| is a big-endian encoding of |bn|, and // zero otherwise. static int integers_equal(const CBS *bytes, const BIGNUM *bn) { … } EC_GROUP *EC_KEY_parse_curve_name(CBS *cbs) { … } int EC_KEY_marshal_curve_name(CBB *cbb, const EC_GROUP *group) { … } EC_GROUP *EC_KEY_parse_parameters(CBS *cbs) { … } int EC_POINT_point2cbb(CBB *out, const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) { … } EC_KEY *d2i_ECPrivateKey(EC_KEY **out, const uint8_t **inp, long len) { … } int i2d_ECPrivateKey(const EC_KEY *key, uint8_t **outp) { … } EC_KEY *d2i_ECParameters(EC_KEY **out_key, const uint8_t **inp, long len) { … } int i2d_ECParameters(const EC_KEY *key, uint8_t **outp) { … } EC_KEY *o2i_ECPublicKey(EC_KEY **keyp, const uint8_t **inp, long len) { … } int i2o_ECPublicKey(const EC_KEY *key, uint8_t **outp) { … } size_t EC_get_builtin_curves(EC_builtin_curve *out_curves, size_t max_num_curves) { … }