aboutsummaryrefslogtreecommitdiff
path: root/bpkg/openssl
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2016-04-14 17:59:24 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2016-05-04 20:47:45 +0300
commitb13332c991ce2695626eaca367dd8208b174c9ca (patch)
tree809dc321b47d5ef9c72935637f94bf5b84ed640d /bpkg/openssl
parentc9831f760a83e36a3a2ac84b1bd3f573e47ef195 (diff)
Add support for repository authentication
Diffstat (limited to 'bpkg/openssl')
-rw-r--r--bpkg/openssl31
1 files changed, 31 insertions, 0 deletions
diff --git a/bpkg/openssl b/bpkg/openssl
new file mode 100644
index 0000000..c2f8712
--- /dev/null
+++ b/bpkg/openssl
@@ -0,0 +1,31 @@
+// file : bpkg/openssl -*- C++ -*-
+// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_OPENSSL
+#define BPKG_OPENSSL
+
+#include <butl/process>
+
+#include <bpkg/types>
+#include <bpkg/utility>
+
+#include <bpkg/common-options>
+
+namespace bpkg
+{
+ // Start the openssl process. Parameters in, out, err flags if the caller
+ // wish to write to, or read from the process STDIN, STDOUT, STDERR streams.
+ // If out and err are both true, then STDERR is redirected to STDOUT, and
+ // they both can be read from in_ofd descriptor.
+ //
+ butl::process
+ start_openssl (const common_options&,
+ const char* command,
+ const cstrings& options,
+ bool in = false,
+ bool out = false,
+ bool err = false);
+}
+
+#endif // BPKG_OPENSSL