aboutsummaryrefslogtreecommitdiff
path: root/openssl/agent
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-01-16 21:10:54 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-01-16 21:10:54 +0300
commitcd28f2963e696ad6668dfa87ce7e4f8dc35f01ea (patch)
tree9806ea943fbe6e68613ff851b418107553bf6304 /openssl/agent
parent089405dfcd3920f60aebc1f0ddd7980f91ff5d42 (diff)
Update copyright year
Diffstat (limited to 'openssl/agent')
-rw-r--r--openssl/agent/pkcs11/agent.cxx4
-rw-r--r--openssl/agent/pkcs11/options.cli2
-rw-r--r--openssl/agent/pkcs11/pkcs11.cxx2
-rw-r--r--openssl/agent/pkcs11/pkcs11.hxx2
-rw-r--r--openssl/agent/pkcs11/private-key.cxx2
-rw-r--r--openssl/agent/pkcs11/private-key.hxx2
-rw-r--r--openssl/agent/pkcs11/private-key.test.cxx2
-rw-r--r--openssl/agent/pkcs11/private-key.test.testscript2
-rw-r--r--openssl/agent/pkcs11/url.cxx2
-rw-r--r--openssl/agent/pkcs11/url.hxx2
-rw-r--r--openssl/agent/pkcs11/url.test.cxx2
-rw-r--r--openssl/agent/pkcs11/url.test.testscript2
12 files changed, 13 insertions, 13 deletions
diff --git a/openssl/agent/pkcs11/agent.cxx b/openssl/agent/pkcs11/agent.cxx
index 2a7af90..dc85b6d 100644
--- a/openssl/agent/pkcs11/agent.cxx
+++ b/openssl/agent/pkcs11/agent.cxx
@@ -1,5 +1,5 @@
// file : openssl/agent/pkcs11/agent.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <sys/un.h> // sockaddr_un
@@ -63,7 +63,7 @@ namespace openssl
{
cout << "openssl-agent-pkcs11 " << OPENSSL_AGENT_VERSION_ID << endl
<< "libbutl " << LIBBUTL_VERSION_ID << endl
- << "Copyright (c) 2014-2018 Code Synthesis Ltd" << endl
+ << "Copyright (c) 2014-2019 Code Synthesis Ltd" << endl
<< "This is free software released under the MIT license."
<< endl;
diff --git a/openssl/agent/pkcs11/options.cli b/openssl/agent/pkcs11/options.cli
index 9c31b53..9a4db23 100644
--- a/openssl/agent/pkcs11/options.cli
+++ b/openssl/agent/pkcs11/options.cli
@@ -1,5 +1,5 @@
// file : openssl/agent/pkcs11/options.cli
-// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
include <openssl/options.cli>;
diff --git a/openssl/agent/pkcs11/pkcs11.cxx b/openssl/agent/pkcs11/pkcs11.cxx
index 1cd541d..53f283f 100644
--- a/openssl/agent/pkcs11/pkcs11.cxx
+++ b/openssl/agent/pkcs11/pkcs11.cxx
@@ -1,5 +1,5 @@
// file : openssl/agent/pkcs11/pkcs11.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <openssl/agent/pkcs11/pkcs11.hxx>
diff --git a/openssl/agent/pkcs11/pkcs11.hxx b/openssl/agent/pkcs11/pkcs11.hxx
index e1c90b1..b5fcc45 100644
--- a/openssl/agent/pkcs11/pkcs11.hxx
+++ b/openssl/agent/pkcs11/pkcs11.hxx
@@ -1,5 +1,5 @@
// file : openssl/agent/pkcs11/pkcs11.hxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef OPENSSL_AGENT_PKCS11_PKCS11_HXX
diff --git a/openssl/agent/pkcs11/private-key.cxx b/openssl/agent/pkcs11/private-key.cxx
index e85d815..1fc4b8c 100644
--- a/openssl/agent/pkcs11/private-key.cxx
+++ b/openssl/agent/pkcs11/private-key.cxx
@@ -1,5 +1,5 @@
// file : openssl/agent/pkcs11/private-key.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <openssl/agent/pkcs11/private-key.hxx>
diff --git a/openssl/agent/pkcs11/private-key.hxx b/openssl/agent/pkcs11/private-key.hxx
index 967f057..2c1b356 100644
--- a/openssl/agent/pkcs11/private-key.hxx
+++ b/openssl/agent/pkcs11/private-key.hxx
@@ -1,5 +1,5 @@
// file : openssl/agent/pkcs11/private-key.hxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef OPENSSL_AGENT_PKCS11_PRIVATE_KEY_HXX
diff --git a/openssl/agent/pkcs11/private-key.test.cxx b/openssl/agent/pkcs11/private-key.test.cxx
index 52e6186..5e68186 100644
--- a/openssl/agent/pkcs11/private-key.test.cxx
+++ b/openssl/agent/pkcs11/private-key.test.cxx
@@ -1,5 +1,5 @@
// file : openssl/agent/pkcs11/private-key.test.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <iostream>
diff --git a/openssl/agent/pkcs11/private-key.test.testscript b/openssl/agent/pkcs11/private-key.test.testscript
index 02bc6fe..4c532b1 100644
--- a/openssl/agent/pkcs11/private-key.test.testscript
+++ b/openssl/agent/pkcs11/private-key.test.testscript
@@ -1,5 +1,5 @@
# file : openssl/agent/pkcs11/private-key.test.testscript -*- C++ -*-
-# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
#url = 'pkcs11:token=name:cppget.org;object=SIGN%20key?pin-value=123123'
diff --git a/openssl/agent/pkcs11/url.cxx b/openssl/agent/pkcs11/url.cxx
index 0b9c3ac..1e0d503 100644
--- a/openssl/agent/pkcs11/url.cxx
+++ b/openssl/agent/pkcs11/url.cxx
@@ -1,5 +1,5 @@
// file : openssl/agent/pkcs11/url.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <openssl/agent/pkcs11/url.hxx>
diff --git a/openssl/agent/pkcs11/url.hxx b/openssl/agent/pkcs11/url.hxx
index b8ca056..cbb37ad 100644
--- a/openssl/agent/pkcs11/url.hxx
+++ b/openssl/agent/pkcs11/url.hxx
@@ -1,5 +1,5 @@
// file : openssl/agent/pkcs11/url.hxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef OPENSSL_AGENT_PKCS11_URL_HXX
diff --git a/openssl/agent/pkcs11/url.test.cxx b/openssl/agent/pkcs11/url.test.cxx
index 6e9f9d1..fda1a6e 100644
--- a/openssl/agent/pkcs11/url.test.cxx
+++ b/openssl/agent/pkcs11/url.test.cxx
@@ -1,5 +1,5 @@
// file : openssl/agent/pkcs11/url.test.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <iostream>
diff --git a/openssl/agent/pkcs11/url.test.testscript b/openssl/agent/pkcs11/url.test.testscript
index 807fad9..615d62f 100644
--- a/openssl/agent/pkcs11/url.test.testscript
+++ b/openssl/agent/pkcs11/url.test.testscript
@@ -1,5 +1,5 @@
# file : openssl/agent/pkcs11/url.test.testscript -*- C++ -*-
-# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: valid