Skip to content

Commit 54413e2

Browse files
committed
Add Third Party Notice and copyright notices
Add project web site to PQAP readme
1 parent 8c161bc commit 54413e2

7 files changed

+1350
-0
lines changed

ThirdPartyNotice.txt

+1,338
Large diffs are not rendered by default.

openvpn/build/build.py

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# recent Perl is installed and in the system PATH
1515
# - http://strawberryperl.com/releases.html (MSI and standalone ZIP versions available)
1616

17+
# Copyright (C) 2018 Microsoft Corporation
1718

1819
import os
1920
import shutil
@@ -200,6 +201,8 @@ def build_openvpn_linux():
200201
shutil.copy('../../initialsetup.sh', '.' + OPENVPN_LINUX_PREFIX + '/sbin')
201202
# Copy pointer to privacy statement into doc directory
202203
shutil.copy('../../PRIVACY.txt', '.' + OPENVPN_LINUX_PREFIX + '/share/doc/openvpn')
204+
# Copy Third Party notice into doc directory
205+
shutil.copy('../../../../ThirdPartyNotice.txt', '.' + OPENVPN_LINUX_PREFIX + '/share/doc/openvpn')
203206
# Copy service file for systemd into the appropriate place
204207
os.makedirs('etc/systemd/system')
205208
shutil.copy('../../pq-openvpn.service', 'etc/systemd/system')

openvpn/build/devbuild.py

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
# recent Perl is installed and in the system PATH
2626
# - http://strawberryperl.com/releases.html (MSI and standalone ZIP versions available)
2727

28+
# Copyright (C) 2018 Microsoft Corporation
2829

2930
import os
3031
import shutil

openvpn/build/initialsetup.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash
22

3+
# Copyright (C) 2018 Microsoft Corporation
4+
35
# After unpacking staged tarball, do a couple of setup steps to start
46
# and stop OpenVPN automatically. This script must be run as root, so
57
# run it with sudo.

pqap/README-raspberry-pi-PQ-VPN.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
A VPN Device with Post-Quantum Security
22
---------------------------------------
33

4+
Please visit our project page at: https://www.microsoft.com/en-us/research/project/post-quantum-crypto-vpn/
5+
46
Device Hardware
57
----------------
68
We tested with a Raspberry Pi 3 Model B (purchased in summer 2017). When the

pqap/create_image.pl

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/perl
22

3+
# Copyright (C) 2018 Microsoft Corporation
4+
35
use strict;
46
use warnings;
57
use File::Copy;

pqap/resizeimage.pl

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
# Script taken from https://www.raspberrypi.org/forums/viewtopic.php?f=91&t=58069
44
# with minor modifications
55

6+
# Portions Copyright (C) 2018 Microsoft Corporation
7+
68
use utf8;
79
use 5.010;
810
use strict;

0 commit comments

Comments
 (0)