summaryrefslogtreecommitdiff
path: root/src/signer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/signer.h')
-rw-r--r--src/signer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/signer.h b/src/signer.h
index 6e258f8d..92745ff2 100644
--- a/src/signer.h
+++ b/src/signer.h
@@ -42,9 +42,9 @@ class Signer : public boost::noncopyable
{
public:
/** @param c Certificate chain to sign with.
- * @param k Key to sign with.
+ * @param k Key to sign with as a PEM-format string.
*/
- Signer (CertificateChain c, boost::filesystem::path k)
+ Signer (CertificateChain c, std::string k)
: _certificates (c)
, _key (k)
{}
@@ -60,8 +60,8 @@ private:
/** Certificate chain to sign with */
CertificateChain _certificates;
- /** Filename of signer key */
- boost::filesystem::path _key;
+ /** Key to sign with as a PEM-format string */
+ std::string _key;
};
}