From 1379d97bbe8ae0c453b8979c118b9f49e25163c1 Mon Sep 17 00:00:00 2001 From: Jeroen Leenarts Date: Thu, 6 Sep 2018 07:42:23 +0200 Subject: Switch copyright assignment from Jason to WireGuard LLC. Signed-off-by: Jason A. Donenfeld --- Shared/ProviderConfigurationKeys.swift | 2 +- Shared/Validators.swift | 2 +- WireGuard.xcodeproj/project.pbxproj | 2 +- WireGuard/AppDelegate.swift | 2 +- WireGuard/Coordinators/AppCoordinator.swift | 2 +- WireGuard/Coordinators/Coordinator.swift | 2 +- WireGuard/Coordinators/RootCoordinator.swift | 2 +- WireGuard/Crypto/x25519.c | 2 +- WireGuard/Extensions/String+Arrays.swift | 2 +- WireGuard/Extensions/String+Base64.swift | 2 +- WireGuard/Log.swift | 2 +- WireGuard/Models/Attribute.swift | 2 +- WireGuard/Models/Interface+CoreDataProperties.swift | 2 +- WireGuard/Models/Interface+Extension.swift | 2 +- WireGuard/Models/Peer+Extension.swift | 2 +- WireGuard/Models/Tunnel+CoreDataClass.swift | 2 +- WireGuard/Models/Tunnel+CoreDataProperties.swift | 2 +- WireGuard/Models/Tunnel+Extension.swift | 2 +- WireGuard/ViewControllers/Identifyable.swift | 2 +- WireGuard/ViewControllers/QRScanViewController.swift | 2 +- WireGuard/ViewControllers/TunnelConfigurationTableViewController.swift | 2 +- WireGuard/ViewControllers/TunnelsTableViewController.swift | 2 +- WireGuard/ViewControllers/UITableView+WireGuard.swift | 2 +- WireGuardNetworkExtension/Log.swift | 2 +- WireGuardNetworkExtension/PacketTunnelProvider.swift | 2 +- WireGuardTests/ValidatorsTests.swift | 2 +- wireguard-go-bridge/wireguard.h | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/Shared/ProviderConfigurationKeys.swift b/Shared/ProviderConfigurationKeys.swift index a249130..5a29349 100644 --- a/Shared/ProviderConfigurationKeys.swift +++ b/Shared/ProviderConfigurationKeys.swift @@ -3,7 +3,7 @@ // WireGuard // // Created by Jeroen Leenarts on 12-08-18. -// Copyright © 2018 Jason A. Donenfeld . All rights reserved. +// Copyright © 2018 WireGuard LLC. All rights reserved. // import Foundation diff --git a/Shared/Validators.swift b/Shared/Validators.swift index 0b95587..e979aad 100644 --- a/Shared/Validators.swift +++ b/Shared/Validators.swift @@ -3,7 +3,7 @@ // WireGuard // // Created by Jeroen Leenarts on 15-08-18. -// Copyright © 2018 Jason A. Donenfeld . All rights reserved. +// Copyright © 2018 WireGuard LLC. All rights reserved. // import Foundation diff --git a/WireGuard.xcodeproj/project.pbxproj b/WireGuard.xcodeproj/project.pbxproj index 38c5cfd..f666750 100644 --- a/WireGuard.xcodeproj/project.pbxproj +++ b/WireGuard.xcodeproj/project.pbxproj @@ -412,7 +412,7 @@ attributes = { LastSwiftUpdateCheck = 0940; LastUpgradeCheck = 0930; - ORGANIZATIONNAME = "Jason A. Donenfeld "; + ORGANIZATIONNAME = "WireGuard LLC"; TargetAttributes = { 4A4BACE120B5F1BF00F12B28 = { CreatedOnToolsVersion = 9.3.1; 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . 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 . All rights reserved. +// Copyright © 2018 WireGuard LLC. All rights reserved. // import Foundation diff --git a/WireGuardNetworkExtension/Log.swift b/WireGuardNetworkExtension/Log.swift index 4d3ba08..8b529ff 100644 --- a/WireGuardNetworkExtension/Log.swift +++ b/WireGuardNetworkExtension/Log.swift @@ -3,7 +3,7 @@ // WireGuardNetworkExtension // // Created by Jeroen Leenarts on 07-07-18. -// Copyright © 2018 Jason A. Donenfeld . All rights reserved. +// Copyright © 2018 WireGuard LLC. All rights reserved. // import os.log diff --git a/WireGuardNetworkExtension/PacketTunnelProvider.swift b/WireGuardNetworkExtension/PacketTunnelProvider.swift index ce37c8a..3cf621b 100644 --- a/WireGuardNetworkExtension/PacketTunnelProvider.swift +++ b/WireGuardNetworkExtension/PacketTunnelProvider.swift @@ -3,7 +3,7 @@ // WireGuardNetworkExtension // // Created by Jeroen Leenarts on 19-06-18. -// Copyright © 2018 Jason A. Donenfeld . All rights reserved. +// Copyright © 2018 WireGuard LLC. All rights reserved. // import NetworkExtension diff --git a/WireGuardTests/ValidatorsTests.swift b/WireGuardTests/ValidatorsTests.swift index af06457..ddd3a52 100644 --- a/WireGuardTests/ValidatorsTests.swift +++ b/WireGuardTests/ValidatorsTests.swift @@ -3,7 +3,7 @@ // WireGuardTests // // Created by Jeroen Leenarts on 15-08-18. -// Copyright © 2018 Jason A. Donenfeld . All rights reserved. +// Copyright © 2018 WireGuard LLC. All rights reserved. // import XCTest diff --git a/wireguard-go-bridge/wireguard.h b/wireguard-go-bridge/wireguard.h index 8fd2ac0..effae8e 100644 --- a/wireguard-go-bridge/wireguard.h +++ b/wireguard-go-bridge/wireguard.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2018 WireGuard LLC. All Rights Reserved. */ #ifndef WIREGUARD_H -- cgit v1.2.3-59-g8ed1b