1#ifndef Driver_Crypto_ED25519_h_
2#define Driver_Crypto_ED25519_h_
65 const void* srcMessage,
66 size_t srcMessageLength,
#define DriverCryptoStatus_T
Return Status. DRIVER_CRYPTO_SUCCESS is success, all other values indicate an error.
Definition Api.h:20
This class implements the Edwards-curve digital signature defined by Edwards-Curve Digital Signature ...
Definition ED25519.h:32
uint8_t publicKey[PUBLIC_KEY_SIZE]
Private Key.
Definition ED25519.h:51
static DriverCryptoStatus_T sign(uint8_t dstSignature[SIGNATURE_SIZE], const void *srcMessage, size_t srcMessageLength, const Keys_T keyPair)
This method is used to digital sign a 'message'.
static DriverCryptoStatus_T createKeyPair(Keys_T dstKeys, const uint8_t seed[SEED_SIZE])
This method create a key pair for the signing algorithm.
static constexpr size_t SIGNATURE_SIZE
Signature size in bytes.
Definition ED25519.h:41
static constexpr size_t SEED_SIZE
Seed (for when creating a Key par) size in bytes.
Definition ED25519.h:44
static constexpr size_t PRIVATE_KEY_SIZE
Public key size in bytes.
Definition ED25519.h:38
static DriverCryptoStatus_T verify(const uint8_t messageSignature[SIGNATURE_SIZE], const void *message, size_t messageLength, const uint8_t publicKey[PUBLIC_KEY_SIZE])
This method is used to verify that the specified 'messages' has been signed.
static constexpr size_t PUBLIC_KEY_SIZE
Public key size in bytes.
Definition ED25519.h:35
uint8_t privateKey[PRIVATE_KEY_SIZE]
Public Key.
Definition ED25519.h:50
Asymmetrically Key Pair.
Definition ED25519.h:49