forked from pEp.foundation/downloadclient
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.
34 lines
707 B
C++
34 lines
707 B
C++
// this file is under GNU General Public License 3.0
|
|
// see LICENSE.txt
|
|
|
|
#include "downloadclient.hh"
|
|
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
namespace pEp {
|
|
namespace UpdateClient {
|
|
string update(product p, PublicKey update_key)
|
|
{
|
|
UpdateStream us { UpdateDevice(p) };
|
|
|
|
try {
|
|
us->open(update_key);
|
|
}
|
|
catch (exception&) { }
|
|
|
|
if (us->filename() == "")
|
|
throw DownloadError();
|
|
|
|
return us->filename();
|
|
}
|
|
|
|
string update(product p, string keyfile)
|
|
{
|
|
PublicKey update_key = load_key(keyfile);
|
|
return update(p, update_key);
|
|
}
|
|
}
|
|
}
|
|
|