From 315caaba7e83eb6680a0407ea13e04b5f7739788 Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Tue, 3 Mar 2015 11:18:07 +0000 Subject: Add functions for signing and verifying messages using curve25519 keys --- src/crypto.cpp | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/libs.cpp | 8 +++++++ 2 files changed, 75 insertions(+) (limited to 'src') diff --git a/src/crypto.cpp b/src/crypto.cpp index 57f31cd..24a8136 100644 --- a/src/crypto.cpp +++ b/src/crypto.cpp @@ -28,6 +28,38 @@ int curve25519_donna( #include "crypto-algorithms/aes.h" #include "crypto-algorithms/sha256.h" +int ed25519_sign( + unsigned char *signature, + const unsigned char *message, size_t message_len, + const unsigned char *public_key, + const unsigned char *private_key +); + + +int ed25519_verify( + const unsigned char *signature, + const unsigned char *message, size_t message_len, + const unsigned char *public_key +); + + +void convert_curve25519_to_ed25519( + unsigned char * public_key, + unsigned char * signature +); + + +void convert_ed25519_to_curve25519( + unsigned char const * public_key, + unsigned char * signature +); + + +void ed25519_keypair( + unsigned char * private_key, + unsigned char * public_key +); + } @@ -124,6 +156,41 @@ void axolotl::curve25519_shared_secret( } +void axolotl::curve25519_sign( + axolotl::Curve25519KeyPair const & our_key, + std::uint8_t const * message, std::size_t message_length, + std::uint8_t * output +) { + std::uint8_t private_key[32]; + std::uint8_t public_key[32]; + std::memcpy(private_key, our_key.private_key, 32); + ::ed25519_keypair(private_key, public_key); + ::ed25519_sign( + output, + message, message_length, + public_key, private_key + ); + ::convert_ed25519_to_curve25519(public_key, output); +} + + +bool axolotl::curve25519_verify( + axolotl::Curve25519PublicKey const & their_key, + std::uint8_t const * message, std::size_t message_length, + std::uint8_t const * signature +) { + std::uint8_t public_key[32]; + std::uint8_t signature_buffer[64]; + std::memcpy(public_key, their_key.public_key, 32); + std::memcpy(signature_buffer, signature, 64); + ::convert_curve25519_to_ed25519(public_key, signature_buffer); + return 0 != ::ed25519_verify( + signature, + message, message_length, + public_key + ); +} + std::size_t axolotl::aes_encrypt_cbc_length( std::size_t input_length ) { diff --git a/src/libs.cpp b/src/libs.cpp index 61bb86c..6757574 100644 --- a/src/libs.cpp +++ b/src/libs.cpp @@ -16,4 +16,12 @@ extern "C" { #include "crypto-algorithms/sha256.c" #include "crypto-algorithms/aes.c" #include "curve25519-donna/curve25519-donna.c" +#define select ed25519_select +#include "ed25519/src/fe.c" +#include "ed25519/src/sc.c" +#include "ed25519/src/ge.c" +#include "ed25519/src/sha512.c" +#include "ed25519/src/verify.c" +#include "ed25519/src/sign.c" +#include "ed25519_additions.c" } -- cgit v1.2.3