2018-12-12 00:38:58 +00:00
|
|
|
#include <crypto.hpp>
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <encrypted_frame.hpp>
|
|
|
|
#include <logger.hpp>
|
|
|
|
#include <mem.hpp>
|
2018-06-10 14:05:48 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2018-06-11 13:44:49 +00:00
|
|
|
bool
|
2018-08-13 23:22:31 +00:00
|
|
|
EncryptedFrame::EncryptInPlace(const byte_t* ourSecretKey,
|
|
|
|
const byte_t* otherPubkey,
|
2018-12-11 00:53:11 +00:00
|
|
|
llarp::Crypto* crypto)
|
2018-06-11 13:44:49 +00:00
|
|
|
{
|
|
|
|
// format of frame is
|
|
|
|
// <32 bytes keyed hash of following data>
|
|
|
|
// <32 bytes nonce>
|
|
|
|
// <32 bytes pubkey>
|
|
|
|
// <N bytes encrypted payload>
|
|
|
|
//
|
2018-06-19 17:11:24 +00:00
|
|
|
byte_t* hash = data();
|
2018-06-12 11:57:14 +00:00
|
|
|
byte_t* nonce = hash + SHORTHASHSIZE;
|
|
|
|
byte_t* pubkey = nonce + TUNNONCESIZE;
|
|
|
|
byte_t* body = pubkey + PUBKEYSIZE;
|
2018-06-11 13:44:49 +00:00
|
|
|
|
2018-06-12 11:57:14 +00:00
|
|
|
SharedSecret shared;
|
2018-06-11 13:44:49 +00:00
|
|
|
|
|
|
|
auto DH = crypto->dh_client;
|
|
|
|
auto Encrypt = crypto->xchacha20;
|
|
|
|
auto MDS = crypto->hmac;
|
|
|
|
|
|
|
|
llarp_buffer_t buf;
|
|
|
|
buf.base = body;
|
|
|
|
buf.cur = buf.base;
|
2018-12-20 16:49:05 +00:00
|
|
|
buf.sz = size() - EncryptedFrameOverheadSize;
|
2018-06-11 13:44:49 +00:00
|
|
|
|
|
|
|
// set our pubkey
|
2018-06-12 11:57:14 +00:00
|
|
|
memcpy(pubkey, llarp::seckey_topublic(ourSecretKey), PUBKEYSIZE);
|
2018-06-11 13:44:49 +00:00
|
|
|
// randomize nonce
|
2018-06-12 11:57:14 +00:00
|
|
|
crypto->randbytes(nonce, TUNNONCESIZE);
|
2018-06-11 13:44:49 +00:00
|
|
|
|
|
|
|
// derive shared key
|
2018-06-20 12:34:48 +00:00
|
|
|
if(!DH(shared, otherPubkey, ourSecretKey, nonce))
|
2018-06-11 13:44:49 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("DH failed");
|
2018-06-11 13:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-06-20 12:34:48 +00:00
|
|
|
|
2018-06-11 13:44:49 +00:00
|
|
|
// encrypt body
|
|
|
|
if(!Encrypt(buf, shared, nonce))
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("encrypt failed");
|
2018-06-11 13:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// generate message auth
|
|
|
|
buf.base = nonce;
|
|
|
|
buf.cur = buf.base;
|
2018-06-19 17:11:24 +00:00
|
|
|
buf.sz = size() - SHORTHASHSIZE;
|
2018-06-11 13:44:49 +00:00
|
|
|
|
|
|
|
if(!MDS(hash, buf, shared))
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("Failed to generate messgae auth");
|
2018-06-11 13:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-10 14:05:48 +00:00
|
|
|
bool
|
2018-08-13 23:22:31 +00:00
|
|
|
EncryptedFrame::DecryptInPlace(const byte_t* ourSecretKey,
|
2018-12-11 00:53:11 +00:00
|
|
|
llarp::Crypto* crypto)
|
2018-06-10 14:05:48 +00:00
|
|
|
{
|
2018-06-11 13:25:10 +00:00
|
|
|
// format of frame is
|
|
|
|
// <32 bytes keyed hash of following data>
|
|
|
|
// <32 bytes nonce>
|
|
|
|
// <32 bytes pubkey>
|
|
|
|
// <N bytes encrypted payload>
|
|
|
|
//
|
2018-06-19 17:11:24 +00:00
|
|
|
byte_t* hash = data();
|
2018-06-12 11:57:14 +00:00
|
|
|
byte_t* nonce = hash + SHORTHASHSIZE;
|
|
|
|
byte_t* otherPubkey = nonce + TUNNONCESIZE;
|
|
|
|
byte_t* body = otherPubkey + PUBKEYSIZE;
|
2018-06-11 13:25:10 +00:00
|
|
|
|
|
|
|
// use dh_server becuase we are not the creator of this message
|
|
|
|
auto DH = crypto->dh_server;
|
|
|
|
auto Decrypt = crypto->xchacha20;
|
2018-06-11 13:44:49 +00:00
|
|
|
auto MDS = crypto->hmac;
|
2018-06-11 13:25:10 +00:00
|
|
|
|
|
|
|
llarp_buffer_t buf;
|
2018-06-11 13:44:49 +00:00
|
|
|
buf.base = nonce;
|
2018-06-11 13:25:10 +00:00
|
|
|
buf.cur = buf.base;
|
2018-06-19 17:11:24 +00:00
|
|
|
buf.sz = size() - SHORTHASHSIZE;
|
2018-06-11 13:25:10 +00:00
|
|
|
|
2018-06-12 11:57:14 +00:00
|
|
|
SharedSecret shared;
|
|
|
|
ShortHash digest;
|
2018-06-11 13:25:10 +00:00
|
|
|
|
2018-06-20 12:34:48 +00:00
|
|
|
if(!DH(shared, otherPubkey, ourSecretKey, nonce))
|
2018-06-11 13:25:10 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("DH failed");
|
2018-06-11 13:25:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-11 13:44:49 +00:00
|
|
|
if(!MDS(digest, buf, shared))
|
2018-06-11 13:25:10 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("Digest failed");
|
2018-06-11 13:25:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-12 11:57:14 +00:00
|
|
|
if(memcmp(digest, hash, digest.size()))
|
2018-06-11 13:25:10 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("message authentication failed");
|
2018-06-11 13:25:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-11 13:44:49 +00:00
|
|
|
buf.base = body;
|
|
|
|
buf.cur = body;
|
2018-12-20 16:49:05 +00:00
|
|
|
buf.sz = size() - EncryptedFrameOverheadSize;
|
2018-06-11 13:44:49 +00:00
|
|
|
|
2018-06-11 13:25:10 +00:00
|
|
|
if(!Decrypt(buf, shared, nonce))
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("decrypt failed");
|
2018-06-11 13:25:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2018-06-10 14:05:48 +00:00
|
|
|
}
|
2018-06-18 22:03:50 +00:00
|
|
|
} // namespace llarp
|