3#ifndef IMT_BASE_LIB_CRYPTO_ELLIPTICCURVEDSA_H
4#define IMT_BASE_LIB_CRYPTO_ELLIPTICCURVEDSA_H
This template class provides a small wrapper around a data buffer.
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