aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard
diff options
context:
space:
mode:
Diffstat (limited to 'WireGuard')
-rw-r--r--WireGuard/AppDelegate.swift2
-rw-r--r--WireGuard/Coordinators/AppCoordinator.swift2
-rw-r--r--WireGuard/Coordinators/Coordinator.swift2
-rw-r--r--WireGuard/Coordinators/RootCoordinator.swift2
-rw-r--r--WireGuard/Crypto/x25519.c2
-rw-r--r--WireGuard/Extensions/String+Arrays.swift2
-rw-r--r--WireGuard/Extensions/String+Base64.swift2
-rw-r--r--WireGuard/Log.swift2
-rw-r--r--WireGuard/Models/Attribute.swift2
-rw-r--r--WireGuard/Models/Interface+CoreDataProperties.swift2
-rw-r--r--WireGuard/Models/Interface+Extension.swift2
-rw-r--r--WireGuard/Models/Peer+Extension.swift2
-rw-r--r--WireGuard/Models/Tunnel+CoreDataClass.swift2
-rw-r--r--WireGuard/Models/Tunnel+CoreDataProperties.swift2
-rw-r--r--WireGuard/Models/Tunnel+Extension.swift2
-rw-r--r--WireGuard/ViewControllers/Identifyable.swift2
-rw-r--r--WireGuard/ViewControllers/QRScanViewController.swift2
-rw-r--r--WireGuard/ViewControllers/TunnelConfigurationTableViewController.swift2
-rw-r--r--WireGuard/ViewControllers/TunnelsTableViewController.swift2
-rw-r--r--WireGuard/ViewControllers/UITableView+WireGuard.swift2
20 files changed, 20 insertions, 20 deletions
diff --git a/WireGuard/AppDelegate.swift b/WireGuard/AppDelegate.swift
index bf9573e..1c4f1ed 100644
--- a/WireGuard/AppDelegate.swift
+++ b/WireGuard/AppDelegate.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 23-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import UIKit
diff --git a/WireGuard/Coordinators/AppCoordinator.swift b/WireGuard/Coordinators/AppCoordinator.swift
index 0321674..02ea4e8 100644
--- a/WireGuard/Coordinators/AppCoordinator.swift
+++ b/WireGuard/Coordinators/AppCoordinator.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 23-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation
diff --git a/WireGuard/Coordinators/Coordinator.swift b/WireGuard/Coordinators/Coordinator.swift
index 0120ca3..0322383 100644
--- a/WireGuard/Coordinators/Coordinator.swift
+++ b/WireGuard/Coordinators/Coordinator.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 23-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation
diff --git a/WireGuard/Coordinators/RootCoordinator.swift b/WireGuard/Coordinators/RootCoordinator.swift
index 72b3cba..f77689a 100644
--- a/WireGuard/Coordinators/RootCoordinator.swift
+++ b/WireGuard/Coordinators/RootCoordinator.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 23-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation
diff --git a/WireGuard/Crypto/x25519.c b/WireGuard/Crypto/x25519.c
index b198ae0..0ebfcb5 100644
--- a/WireGuard/Crypto/x25519.c
+++ b/WireGuard/Crypto/x25519.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0+
*
- * Copyright (C) 2015-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ * Copyright (C) 2015-2018 WireGuard LLC. All Rights Reserved.
*
* Curve25519 ECDH functions, based on TweetNaCl but cleaned up.
*/
diff --git a/WireGuard/Extensions/String+Arrays.swift b/WireGuard/Extensions/String+Arrays.swift
index 2eadfdc..9d4c3ab 100644
--- a/WireGuard/Extensions/String+Arrays.swift
+++ b/WireGuard/Extensions/String+Arrays.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Eric Kuck on 8/15/18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation
diff --git a/WireGuard/Extensions/String+Base64.swift b/WireGuard/Extensions/String+Base64.swift
index e0b7d18..b94dc88 100644
--- a/WireGuard/Extensions/String+Base64.swift
+++ b/WireGuard/Extensions/String+Base64.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Eric Kuck on 8/15/18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation
diff --git a/WireGuard/Log.swift b/WireGuard/Log.swift
index b9cd47f..1739155 100644
--- a/WireGuard/Log.swift
+++ b/WireGuard/Log.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 07-07-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import os.log
diff --git a/WireGuard/Models/Attribute.swift b/WireGuard/Models/Attribute.swift
index 51f7864..c3a6786 100644
--- a/WireGuard/Models/Attribute.swift
+++ b/WireGuard/Models/Attribute.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Eric Kuck on 8/20/18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation
diff --git a/WireGuard/Models/Interface+CoreDataProperties.swift b/WireGuard/Models/Interface+CoreDataProperties.swift
index d52901f..0f82c60 100644
--- a/WireGuard/Models/Interface+CoreDataProperties.swift
+++ b/WireGuard/Models/Interface+CoreDataProperties.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 24-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
//
diff --git a/WireGuard/Models/Interface+Extension.swift b/WireGuard/Models/Interface+Extension.swift
index 5fdb5af..5dbeb5a 100644
--- a/WireGuard/Models/Interface+Extension.swift
+++ b/WireGuard/Models/Interface+Extension.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Eric Kuck on 8/15/18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation
diff --git a/WireGuard/Models/Peer+Extension.swift b/WireGuard/Models/Peer+Extension.swift
index 3ffd941..05d8c77 100644
--- a/WireGuard/Models/Peer+Extension.swift
+++ b/WireGuard/Models/Peer+Extension.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Eric Kuck on 8/15/18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation
diff --git a/WireGuard/Models/Tunnel+CoreDataClass.swift b/WireGuard/Models/Tunnel+CoreDataClass.swift
index 87137bb..0341096 100644
--- a/WireGuard/Models/Tunnel+CoreDataClass.swift
+++ b/WireGuard/Models/Tunnel+CoreDataClass.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 23-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
//
diff --git a/WireGuard/Models/Tunnel+CoreDataProperties.swift b/WireGuard/Models/Tunnel+CoreDataProperties.swift
index acbb1f9..b4e69e9 100644
--- a/WireGuard/Models/Tunnel+CoreDataProperties.swift
+++ b/WireGuard/Models/Tunnel+CoreDataProperties.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 23-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
//
diff --git a/WireGuard/Models/Tunnel+Extension.swift b/WireGuard/Models/Tunnel+Extension.swift
index 0cced3c..cd1409d 100644
--- a/WireGuard/Models/Tunnel+Extension.swift
+++ b/WireGuard/Models/Tunnel+Extension.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 04-08-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation
diff --git a/WireGuard/ViewControllers/Identifyable.swift b/WireGuard/ViewControllers/Identifyable.swift
index 87e441c..ef862b3 100644
--- a/WireGuard/ViewControllers/Identifyable.swift
+++ b/WireGuard/ViewControllers/Identifyable.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 23-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation
diff --git a/WireGuard/ViewControllers/QRScanViewController.swift b/WireGuard/ViewControllers/QRScanViewController.swift
index f15d30b..acd8a97 100644
--- a/WireGuard/ViewControllers/QRScanViewController.swift
+++ b/WireGuard/ViewControllers/QRScanViewController.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Eric Kuck on 8/20/18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import AVFoundation
diff --git a/WireGuard/ViewControllers/TunnelConfigurationTableViewController.swift b/WireGuard/ViewControllers/TunnelConfigurationTableViewController.swift
index 9a4a7e5..ab4eabb 100644
--- a/WireGuard/ViewControllers/TunnelConfigurationTableViewController.swift
+++ b/WireGuard/ViewControllers/TunnelConfigurationTableViewController.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 24-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import UIKit
diff --git a/WireGuard/ViewControllers/TunnelsTableViewController.swift b/WireGuard/ViewControllers/TunnelsTableViewController.swift
index a9ab09b..5f7f15f 100644
--- a/WireGuard/ViewControllers/TunnelsTableViewController.swift
+++ b/WireGuard/ViewControllers/TunnelsTableViewController.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 23-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import UIKit
diff --git a/WireGuard/ViewControllers/UITableView+WireGuard.swift b/WireGuard/ViewControllers/UITableView+WireGuard.swift
index 99f191c..244b1e5 100644
--- a/WireGuard/ViewControllers/UITableView+WireGuard.swift
+++ b/WireGuard/ViewControllers/UITableView+WireGuard.swift
@@ -3,7 +3,7 @@
// WireGuard
//
// Created by Jeroen Leenarts on 24-05-18.
-// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
+// Copyright © 2018 WireGuard LLC. All rights reserved.
//
import Foundation