Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
EllipticCurveDSA.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_CRYPTO_ELLIPTICCURVEDSA_H
4#define IMT_BASE_LIB_CRYPTO_ELLIPTICCURVEDSA_H
5
9
10// AXIVION FILE Style AutosarC++19_03-A18.1.1: use C-style array for compatibility
11// AXIVION FILE Style AutosarC++19_03-A8.4.7: pointer parameters are to pass an array and can not be passed by value
12
13namespace imt {
14namespace base {
15namespace lib {
16namespace crypto {
17
22// AXIVION Next Construct AutosarC++19_03-A0.1.6: Type may not be used in the projects
24
25public:
26
30 static constexpr uint32_t PUBLIC_KEY_SIZE {179U};
31
35 static constexpr uint32_t MAX_SIGNATURE_SIZE {73U};
36
40 static constexpr uint32_t PRIVATE_KEY_SIZE {228U};
41
45 static constexpr uint32_t const RAW_SIGNATURE_SIZE {64U}; // AXIVION Line AutosarC++19_03-M11.0.1: constant declaration is allowed
46
50 static constexpr size_t PUBKEY_POINT_LENGTH {32U};
51
55 static constexpr size_t PUB_DER_MAX_BYTES {94U};
56
65 static bool generateKeyPair(uint8_t privateKey[PRIVATE_KEY_SIZE], uint8_t publicKey[PUBLIC_KEY_SIZE], uint8_t const* pInitBuffer, uint32_t const initBufferSize);
66
75 static uint32_t writeSignature(uint8_t const privateKey[PRIVATE_KEY_SIZE], uint8_t const* pMessage, uint32_t const messageSize, uint8_t signature[MAX_SIGNATURE_SIZE]);
76
85 static bool verifySignature(uint8_t const publicKey[PUBLIC_KEY_SIZE], uint8_t const* pSignature, uint32_t const signatureSize, uint8_t const* pMessage, uint32_t const messageSize);
86
94 static bool parseAsn1Signature(uint8_t const* pSignature, uint32_t const signatureSize, uint8_t rawSignature[RAW_SIGNATURE_SIZE]);
95
102 static size_t createAsn1Signature(uint8_t const rawSignature[RAW_SIGNATURE_SIZE], uint8_t signature[MAX_SIGNATURE_SIZE]);
103
112};
113
114} // namespace crypto
115} // namespace lib
116} // namespace base
117} // namespace imt
118
119#endif // IMT_BASE_LIB_CRYPTO_ELLIPTICCURVEDSA_H
Base class for a static class that disables construction, copy, assignment and move of instances.
Definition StaticClass.h:48
This template class provides a small wrapper around a data buffer.
Definition Span.h:25
This class provides the functions to use the elliptic curve digital signature algorithm.
static bool parseAsn1Signature(uint8_t const *pSignature, uint32_t const signatureSize, uint8_t rawSignature[RAW_SIGNATURE_SIZE])
Parse a Signature in the ASN.1/DER format and return the raw signature (512 bits).
static size_t createPublicKeyAsn1(uint8_t const pKeyX[PUBKEY_POINT_LENGTH], uint8_t const pKeyY[PUBKEY_POINT_LENGTH], core::util::Span< uint8_t > publicKey)
Create a public key in the ASN.1/DER format from the the points on the curve (each 256 bits)
static constexpr uint32_t PUBLIC_KEY_SIZE
Gives the size of the public key.
static bool verifySignature(uint8_t const publicKey[PUBLIC_KEY_SIZE], uint8_t const *pSignature, uint32_t const signatureSize, uint8_t const *pMessage, uint32_t const messageSize)
Checks whether the given message has been signed with the given message.
static constexpr uint32_t PRIVATE_KEY_SIZE
Gives the size of the private key.
static bool generateKeyPair(uint8_t privateKey[PRIVATE_KEY_SIZE], uint8_t publicKey[PUBLIC_KEY_SIZE], uint8_t const *pInitBuffer, uint32_t const initBufferSize)
Generates a key value pair and writes the generated results into the given buffers.
static constexpr uint32_t MAX_SIGNATURE_SIZE
Gives the maximum signature size (effective size varies between 71 and 73)
static constexpr uint32_t const RAW_SIGNATURE_SIZE
The size of the Raw Signature (2 * 256 bite integers = 512 bits)
static uint32_t writeSignature(uint8_t const privateKey[PRIVATE_KEY_SIZE], uint8_t const *pMessage, uint32_t const messageSize, uint8_t signature[MAX_SIGNATURE_SIZE])
Writes a signature for the given message.
static constexpr size_t PUB_DER_MAX_BYTES
The maximal number of bytes for for the public key in the ASN.1/DER format.
static constexpr size_t PUBKEY_POINT_LENGTH
The length of a point on the curve for the public key.
static size_t createAsn1Signature(uint8_t const rawSignature[RAW_SIGNATURE_SIZE], uint8_t signature[MAX_SIGNATURE_SIZE])
Create a Signature in the ASN.1/DER format from a raw signature (512 bits)
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62