You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downloadclient/downloadclient.cc

47 lines
1.1 KiB
C++

5 years ago
// this file is under GNU General Public License 3.0
// see LICENSE.txt
#include "downloadclient.hh"
5 years ago
#include <iostream>
#include <sstream>
5 years ago
namespace pEp {
namespace UpdateClient {
PublicKey load_key(string filename)
{
CryptoPP::RSA::PublicKey key;
std::ifstream ifs{filename, std::ios::binary};
CryptoPP::ByteQueue queue;
CryptoPP::FileSource file(ifs, true);
file.TransferTo(queue);
queue.MessageEnd();
key.Load(queue);
return key;
}
string update(product p, PublicKey update_key, notifyRead_t notifyRead)
5 years ago
{
5 years ago
UpdateStream us { UpdateDevice(p) };
5 years ago
try {
us->open(update_key, notifyRead);
5 years ago
}
5 years ago
catch (exception&) { }
if (us->filename() == "")
throw DownloadError();
return us->filename();
}
string update(product p, string keyfile, notifyRead_t notifyRead)
5 years ago
{
PublicKey update_key = load_key(keyfile);
return update(p, update_key, notifyRead);
5 years ago
}
}
}