2019-01-14 21:46:07 +00:00
|
|
|
#include <crypto/encrypted_frame.hpp>
|
2019-01-10 19:41:51 +00:00
|
|
|
|
2019-01-13 14:00:50 +00:00
|
|
|
#include <crypto/crypto.hpp>
|
2019-01-10 19:41:51 +00:00
|
|
|
#include <util/logger.hpp>
|
|
|
|
#include <util/mem.hpp>
|
2018-06-10 14:05:48 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2018-06-11 13:44:49 +00:00
|
|
|
bool
|
2019-01-02 01:04:04 +00:00
|
|
|
EncryptedFrame::EncryptInPlace(const SecretKey& ourSecretKey,
|
2019-05-28 19:45:08 +00:00
|
|
|
const PubKey& otherPubkey)
|
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>
|
|
|
|
//
|
2019-01-02 01:04:06 +00:00
|
|
|
byte_t* hash = data();
|
|
|
|
byte_t* noncePtr = hash + SHORTHASHSIZE;
|
|
|
|
byte_t* pubkey = noncePtr + 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
|
|
|
|
|
|
|
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
|
|
|
|
2019-05-28 19:45:08 +00:00
|
|
|
auto crypto = CryptoManager::instance();
|
|
|
|
|
2018-06-11 13:44:49 +00:00
|
|
|
// set our pubkey
|
2019-01-02 01:04:08 +00:00
|
|
|
memcpy(pubkey, ourSecretKey.toPublic().data(), PUBKEYSIZE);
|
2018-06-11 13:44:49 +00:00
|
|
|
// randomize nonce
|
2019-01-02 01:04:06 +00:00
|
|
|
crypto->randbytes(noncePtr, TUNNONCESIZE);
|
|
|
|
TunnelNonce nonce(noncePtr);
|
2018-06-11 13:44:49 +00:00
|
|
|
|
|
|
|
// derive shared key
|
2019-01-26 15:40:58 +00:00
|
|
|
if(!crypto->dh_client(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
|
2019-01-26 15:40:58 +00:00
|
|
|
if(!crypto->xchacha20(buf, shared, nonce))
|
2018-06-11 13:44:49 +00:00
|
|
|
{
|
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
|
2019-01-02 01:04:06 +00:00
|
|
|
buf.base = noncePtr;
|
2018-06-11 13:44:49 +00:00
|
|
|
buf.cur = buf.base;
|
2018-06-19 17:11:24 +00:00
|
|
|
buf.sz = size() - SHORTHASHSIZE;
|
2018-06-11 13:44:49 +00:00
|
|
|
|
2019-01-26 15:40:58 +00:00
|
|
|
if(!crypto->hmac(hash, buf, shared))
|
2018-06-11 13:44:49 +00:00
|
|
|
{
|
2019-01-02 01:04:03 +00:00
|
|
|
llarp::LogError("Failed to generate message auth");
|
2018-06-11 13:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-10 14:05:48 +00:00
|
|
|
bool
|
2019-05-28 19:45:08 +00:00
|
|
|
EncryptedFrame::DecryptInPlace(const SecretKey& ourSecretKey)
|
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>
|
|
|
|
//
|
2019-01-02 01:04:06 +00:00
|
|
|
ShortHash hash(data());
|
2019-01-02 01:04:08 +00:00
|
|
|
byte_t* noncePtr = data() + SHORTHASHSIZE;
|
|
|
|
byte_t* body = data() + EncryptedFrameOverheadSize;
|
2019-01-02 01:04:06 +00:00
|
|
|
TunnelNonce nonce(noncePtr);
|
2019-01-02 01:04:08 +00:00
|
|
|
PubKey otherPubkey(noncePtr + TUNNONCESIZE);
|
2018-06-11 13:25:10 +00:00
|
|
|
|
2018-06-12 11:57:14 +00:00
|
|
|
SharedSecret shared;
|
2018-06-11 13:25:10 +00:00
|
|
|
|
2019-05-28 19:45:08 +00:00
|
|
|
auto crypto = CryptoManager::instance();
|
|
|
|
|
2019-01-26 15:40:58 +00:00
|
|
|
// use dh_server because we are not the creator of this message
|
|
|
|
if(!crypto->dh_server(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;
|
|
|
|
}
|
|
|
|
|
2019-01-02 01:04:06 +00:00
|
|
|
llarp_buffer_t buf;
|
|
|
|
buf.base = noncePtr;
|
|
|
|
buf.cur = buf.base;
|
|
|
|
buf.sz = size() - SHORTHASHSIZE;
|
|
|
|
|
|
|
|
ShortHash digest;
|
2019-01-26 15:40:58 +00:00
|
|
|
if(!crypto->hmac(digest.data(), 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;
|
|
|
|
}
|
|
|
|
|
2019-01-02 01:04:06 +00:00
|
|
|
if(!std::equal(digest.begin(), digest.end(), hash.begin()))
|
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
|
|
|
|
2019-01-26 15:40:58 +00:00
|
|
|
if(!crypto->xchacha20(buf, shared, nonce))
|
2018-06-11 13:25:10 +00:00
|
|
|
{
|
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
|