GM6000 Digital Heater Controller Branch: main
SDX-1330
ED25519.h
Go to the documentation of this file.
1#ifndef Driver_Crypto_ED25519_h_
2#define Driver_Crypto_ED25519_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16
17#include "Driver/Crypto/Api.h"
18#include <stdint.h>
19#include <stdlib.h>
20
21
22///
23namespace Driver {
24///
25namespace Crypto {
26
27/** This class implements the Edwards-curve digital signature defined by
28 Edwards-Curve Digital Signature Algorithm (EdDSA) [RFC8032], using standard
29 parameters.
30 */
32{
33public:
34 /// Public key size in bytes
35 static constexpr size_t PUBLIC_KEY_SIZE = 32;
36
37 /// Public key size in bytes
38 static constexpr size_t PRIVATE_KEY_SIZE = 64;
39
40 /// Signature size in bytes
41 static constexpr size_t SIGNATURE_SIZE = 64;
42
43 /// Seed (for when creating a Key par) size in bytes
44 static constexpr size_t SEED_SIZE = 32;
45
46public:
47 /// Asymmetrically Key Pair
48 struct Keys_T
49 {
50 uint8_t privateKey[PRIVATE_KEY_SIZE]; //!< Public Key
51 uint8_t publicKey[PUBLIC_KEY_SIZE]; //!< Private Key
52 };
53
54public:
55 /** This method create a key pair for the signing algorithm. The method
56 returns DRIVER_CRYPTO_SUCCESS when successful.
57 */
59 const uint8_t seed[SEED_SIZE] );
60
61 /** This method is used to digital sign a 'message'. The method
62 returns DRIVER_CRYPTO_SUCCESS when successful.
63 */
64 static DriverCryptoStatus_T sign( uint8_t dstSignature[SIGNATURE_SIZE],
65 const void* srcMessage,
66 size_t srcMessageLength,
67 const Keys_T keyPair );
68
69
70 /** This method is used to verify that the specified 'messages' has been
71 signed. The method returns DRIVER_CRYPTO_SUCCESS when message is
72 successfully verified.
73 */
74 static DriverCryptoStatus_T verify( const uint8_t messageSignature[SIGNATURE_SIZE],
75 const void* message,
76 size_t messageLength,
77 const uint8_t publicKey[PUBLIC_KEY_SIZE] );
78
79};
80
81} // End namespace(s)
82}
83
84/*--------------------------------------------------------------------------*/
85#endif // end header latch
#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
namespace