From ceea7dca2f4ff356e136b9a72611b9b66d402eaa Mon Sep 17 00:00:00 2001 From: Přemysl Eric Janouch Date: Wed, 12 Aug 2020 07:29:57 +0200 Subject: C++: split out a library with a trivial interface Closes #2. --- pdf-simple-sign.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pdf-simple-sign.h (limited to 'pdf-simple-sign.h') diff --git a/pdf-simple-sign.h b/pdf-simple-sign.h new file mode 100644 index 0000000..022731c --- /dev/null +++ b/pdf-simple-sign.h @@ -0,0 +1,28 @@ +// vim: set sw=2 ts=2 sts=2 et tw=100: +// +// pdf-simple-sign: simple PDF signer +// +// Copyright (c) 2017 - 2020, Přemysl Eric Janouch +// +// Permission to use, copy, modify, and/or distribute this software for any +// purpose with or without fee is hereby granted. +// +// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +// OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +// + +#pragma once + +#include + +/// Sign basic PDF documents, as generated by e.g. Cairo, using the key-certificate pair +/// stored in the PKCS#12 file named `pkcs12_path`, with password `pkcs12_pass`. +/// Returns a non-empty error string on failure. +std::string pdf_simple_sign(std::string& document, + const std::string& pkcs12_path, + const std::string& pkcs12_pass); -- cgit v1.2.3-70-g09d2