From 4fc2f55f761d71aae1f145d5aa94ba929cc39676 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:34:30 +0200 Subject: Adding upstream version 1.7.3. Signed-off-by: Daniel Baumann --- ipcipher.cc | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 ipcipher.cc (limited to 'ipcipher.cc') diff --git a/ipcipher.cc b/ipcipher.cc new file mode 100644 index 0000000..57a2aa3 --- /dev/null +++ b/ipcipher.cc @@ -0,0 +1,99 @@ +#include "ipcipher.hh" +#include "ext/ipcrypt/ipcrypt.h" +#include +#include + +/* +int PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen, + const unsigned char *salt, int saltlen, int iter, + int keylen, unsigned char *out); +*/ +std::string makeIPCipherKey(const std::string& password) +{ + static const char salt[]="ipcipheripcipher"; + unsigned char out[16]; + + PKCS5_PBKDF2_HMAC_SHA1(password.c_str(), password.size(), (const unsigned char*)salt, sizeof(salt)-1, 50000, sizeof(out), out); + + return std::string((const char*)out, (const char*)out + sizeof(out)); +} + +static ComboAddress encryptCA4(const ComboAddress& ca, const std::string &key) +{ + if(key.size() != 16) + throw std::runtime_error("Need 128 bits of key for ipcrypt"); + + ComboAddress ret=ca; + + // always returns 0, has no failure mode + ipcrypt_encrypt( (unsigned char*)&ret.sin4.sin_addr.s_addr, + (const unsigned char*) &ca.sin4.sin_addr.s_addr, + (const unsigned char*)key.c_str()); + return ret; +} + +static ComboAddress decryptCA4(const ComboAddress& ca, const std::string &key) +{ + if(key.size() != 16) + throw std::runtime_error("Need 128 bits of key for ipcrypt"); + + ComboAddress ret=ca; + + // always returns 0, has no failure mode + ipcrypt_decrypt( (unsigned char*)&ret.sin4.sin_addr.s_addr, + (const unsigned char*) &ca.sin4.sin_addr.s_addr, + (const unsigned char*)key.c_str()); + return ret; +} + + +static ComboAddress encryptCA6(const ComboAddress& ca, const std::string &key) +{ + if(key.size() != 16) + throw std::runtime_error("Need 128 bits of key for ipcrypt"); + + ComboAddress ret=ca; + + AES_KEY wctx; + AES_set_encrypt_key((const unsigned char*)key.c_str(), 128, &wctx); + AES_encrypt((const unsigned char*)&ca.sin6.sin6_addr.s6_addr, + (unsigned char*)&ret.sin6.sin6_addr.s6_addr, &wctx); + + return ret; +} + +static ComboAddress decryptCA6(const ComboAddress& ca, const std::string &key) +{ + if(key.size() != 16) + throw std::runtime_error("Need 128 bits of key for ipcrypt"); + + ComboAddress ret=ca; + AES_KEY wctx; + AES_set_decrypt_key((const unsigned char*)key.c_str(), 128, &wctx); + AES_decrypt((const unsigned char*)&ca.sin6.sin6_addr.s6_addr, + (unsigned char*)&ret.sin6.sin6_addr.s6_addr, &wctx); + + return ret; +} + + +ComboAddress encryptCA(const ComboAddress& ca, const std::string& key) +{ + if(ca.sin4.sin_family == AF_INET) + return encryptCA4(ca, key); + else if(ca.sin4.sin_family == AF_INET6) + return encryptCA6(ca, key); + else + throw std::runtime_error("ipcrypt can't encrypt non-IP addresses"); +} + +ComboAddress decryptCA(const ComboAddress& ca, const std::string& key) +{ + if(ca.sin4.sin_family == AF_INET) + return decryptCA4(ca, key); + else if(ca.sin4.sin_family == AF_INET6) + return decryptCA6(ca, key); + else + throw std::runtime_error("ipcrypt can't decrypt non-IP addresses"); + +} -- cgit v1.2.3