|
void | ecdsaInitSignature (EcdsaSignature *signature) |
| Initialize an ECDSA signature. More...
|
|
void | ecdsaFreeSignature (EcdsaSignature *signature) |
| Release an ECDSA signature. More...
|
|
error_t | ecdsaImportSignature (EcdsaSignature *signature, const EcCurve *curve, const uint8_t *data, size_t length, EcdsaSignatureFormat format) |
| Import an ECDSA signature. More...
|
|
error_t | ecdsaExportSignature (const EcdsaSignature *signature, uint8_t *data, size_t *length, EcdsaSignatureFormat format) |
| Export an ECDSA signature. More...
|
|
__weak_func error_t | ecdsaGenerateSignature (const PrngAlgo *prngAlgo, void *prngContext, const EcPrivateKey *privateKey, const uint8_t *digest, size_t digestLen, EcdsaSignature *signature) |
| ECDSA signature generation. More...
|
|
__weak_func error_t | ecdsaVerifySignature (const EcPublicKey *publicKey, const uint8_t *digest, size_t digestLen, const EcdsaSignature *signature) |
| ECDSA signature verification. More...
|
|
|
const uint8_t | ECDSA_WITH_SHA1_OID [7] = {0x2A, 0x86, 0x48, 0xCE, 0x3D, 0x04, 0x01} |
|
const uint8_t | ECDSA_WITH_SHA224_OID [8] = {0x2A, 0x86, 0x48, 0xCE, 0x3D, 0x04, 0x03, 0x01} |
|
const uint8_t | ECDSA_WITH_SHA256_OID [8] = {0x2A, 0x86, 0x48, 0xCE, 0x3D, 0x04, 0x03, 0x02} |
|
const uint8_t | ECDSA_WITH_SHA384_OID [8] = {0x2A, 0x86, 0x48, 0xCE, 0x3D, 0x04, 0x03, 0x03} |
|
const uint8_t | ECDSA_WITH_SHA512_OID [8] = {0x2A, 0x86, 0x48, 0xCE, 0x3D, 0x04, 0x03, 0x04} |
|
const uint8_t | ECDSA_WITH_SHA3_224_OID [9] = {0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03, 0x09} |
|
const uint8_t | ECDSA_WITH_SHA3_256_OID [9] = {0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03, 0x0A} |
|
const uint8_t | ECDSA_WITH_SHA3_384_OID [9] = {0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03, 0x0B} |
|
const uint8_t | ECDSA_WITH_SHA3_512_OID [9] = {0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03, 0x0C} |
|
const uint8_t | ECDSA_WITH_SHAKE128_OID [8] = {0x2B, 0x06, 0x01, 0x05, 0x05, 0x07, 0x06, 0x20} |
|
const uint8_t | ECDSA_WITH_SHAKE256_OID [8] = {0x2B, 0x06, 0x01, 0x05, 0x05, 0x07, 0x06, 0x21} |
|
ECDSA (Elliptic Curve Digital Signature Algorithm)
License
SPDX-License-Identifier: GPL-2.0-or-later
Copyright (C) 2010-2025 Oryx Embedded SARL. All rights reserved.
This file is part of CycloneCRYPTO Open.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- Author
- Oryx Embedded SARL (www.oryx-embedded.com)
- Version
- 2.5.0
Definition in file ecdsa.c.