EdDSA (Edwards-Curve Digital Signature Algorithm) More...
Go to the source code of this file.
Macros | |
#define | TRACE_LEVEL CRYPTO_TRACE_LEVEL |
Functions | |
void | eddsaInitPublicKey (EddsaPublicKey *key) |
Initialize an EdDSA public key. More... | |
void | eddsaFreePublicKey (EddsaPublicKey *key) |
Release an EdDSA public key. More... | |
void | eddsaInitPrivateKey (EddsaPrivateKey *key) |
Initialize an EdDSA private key. More... | |
void | eddsaFreePrivateKey (EddsaPrivateKey *key) |
Release an EdDSA private key. More... | |
error_t | eddsaGenerateKeyPair (const PrngAlgo *prngAlgo, void *prngContext, const EcCurveInfo *curveInfo, EddsaPrivateKey *privateKey, EddsaPublicKey *publicKey) |
EdDSA key pair generation. More... | |
error_t | eddsaGeneratePrivateKey (const PrngAlgo *prngAlgo, void *prngContext, const EcCurveInfo *curveInfo, EddsaPrivateKey *privateKey) |
EdDSA private key generation. More... | |
error_t | eddsaGeneratePublicKey (const EcCurveInfo *curveInfo, const EddsaPrivateKey *privateKey, EddsaPublicKey *publicKey) |
Derive the public key from an EdDSA private key. More... | |
Detailed Description
EdDSA (Edwards-Curve Digital Signature Algorithm)
License
SPDX-License-Identifier: GPL-2.0-or-later
Copyright (C) 2010-2024 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.
- Version
- 2.4.4
Definition in file eddsa.c.
Macro Definition Documentation
◆ TRACE_LEVEL
Function Documentation
◆ eddsaFreePrivateKey()
void eddsaFreePrivateKey | ( | EddsaPrivateKey * | key | ) |
◆ eddsaFreePublicKey()
void eddsaFreePublicKey | ( | EddsaPublicKey * | key | ) |
◆ eddsaGenerateKeyPair()
error_t eddsaGenerateKeyPair | ( | const PrngAlgo * | prngAlgo, |
void * | prngContext, | ||
const EcCurveInfo * | curveInfo, | ||
EddsaPrivateKey * | privateKey, | ||
EddsaPublicKey * | publicKey | ||
) |
◆ eddsaGeneratePrivateKey()
error_t eddsaGeneratePrivateKey | ( | const PrngAlgo * | prngAlgo, |
void * | prngContext, | ||
const EcCurveInfo * | curveInfo, | ||
EddsaPrivateKey * | privateKey | ||
) |
◆ eddsaGeneratePublicKey()
error_t eddsaGeneratePublicKey | ( | const EcCurveInfo * | curveInfo, |
const EddsaPrivateKey * | privateKey, | ||
EddsaPublicKey * | publicKey | ||
) |
◆ eddsaInitPrivateKey()
void eddsaInitPrivateKey | ( | EddsaPrivateKey * | key | ) |
◆ eddsaInitPublicKey()
void eddsaInitPublicKey | ( | EddsaPublicKey * | key | ) |