diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-08-12 07:29:57 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-08-12 07:53:21 +0200 |
commit | ceea7dca2f4ff356e136b9a72611b9b66d402eaa (patch) | |
tree | 3e5c51ac871a32833608e5a19a8b1a7d06fd931a /pdf-simple-sign.h | |
parent | 486cafa6b447d7af296411f7c50d4c078f3eac34 (diff) | |
download | pdf-simple-sign-ceea7dca2f4ff356e136b9a72611b9b66d402eaa.tar.gz pdf-simple-sign-ceea7dca2f4ff356e136b9a72611b9b66d402eaa.tar.xz pdf-simple-sign-ceea7dca2f4ff356e136b9a72611b9b66d402eaa.zip |
C++: split out a library with a trivial interfaceorigin/c++-libraryc++-library
Closes #2.
Diffstat (limited to 'pdf-simple-sign.h')
-rw-r--r-- | pdf-simple-sign.h | 28 |
1 files changed, 28 insertions, 0 deletions
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 <p@janouch.name> +// +// 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 <string> + +/// 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); |