diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..eaebc51 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,5 @@ +# This is the official list of age authors for copyright purposes. +# To be included, send a change adding the individual or company +# who owns a contribution's copyright. + +Google LLC diff --git a/LICENSE b/LICENSE index 7a0284b..3b50c98 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2019 Google LLC +Copyright 2019 The age Authors Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -10,7 +10,7 @@ notice, this list of conditions and the following disclaimer. copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google LLC nor the names of its + * Neither the name of the age project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/age.go b/age.go index 8fd1418..a81536d 100644 --- a/age.go +++ b/age.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. // Package age implements file encryption according to the age-encryption.org/v1 // specification. diff --git a/age_test.go b/age_test.go index c84e1cc..c3307ca 100644 --- a/age_test.go +++ b/age_test.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package age_test diff --git a/agessh/agessh.go b/agessh/agessh.go index bd59317..2e6a7c6 100644 --- a/agessh/agessh.go +++ b/agessh/agessh.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. // Package agessh provides age.Identity and age.Recipient implementations of // types "ssh-rsa" and "ssh-ed25519", which allow reusing existing SSH keys for diff --git a/agessh/agessh_test.go b/agessh/agessh_test.go index e815a80..912e111 100644 --- a/agessh/agessh_test.go +++ b/agessh/agessh_test.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package agessh_test diff --git a/agessh/encrypted_keys.go b/agessh/encrypted_keys.go index 999e5c2..d939990 100644 --- a/agessh/encrypted_keys.go +++ b/agessh/encrypted_keys.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package agessh diff --git a/armor/armor.go b/armor/armor.go index def9fa1..e218e89 100644 --- a/armor/armor.go +++ b/armor/armor.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. // Package armor provides a strict, streaming implementation of the ASCII // armoring format for age files. diff --git a/armor/armor_test.go b/armor/armor_test.go index 523eae0..20492bf 100644 --- a/armor/armor_test.go +++ b/armor/armor_test.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package armor_test diff --git a/cmd/age-keygen/keygen.go b/cmd/age-keygen/keygen.go index 9303233..6858c14 100644 --- a/cmd/age-keygen/keygen.go +++ b/cmd/age-keygen/keygen.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package main diff --git a/cmd/age/age.go b/cmd/age/age.go index 0079f11..9c1707d 100644 --- a/cmd/age/age.go +++ b/cmd/age/age.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package main diff --git a/cmd/age/age_test.go b/cmd/age/age_test.go index 296055f..e09a9e5 100644 --- a/cmd/age/age_test.go +++ b/cmd/age/age_test.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package main diff --git a/cmd/age/encrypted_keys.go b/cmd/age/encrypted_keys.go index b3a2e51..ae1e27e 100644 --- a/cmd/age/encrypted_keys.go +++ b/cmd/age/encrypted_keys.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package main diff --git a/cmd/age/parse.go b/cmd/age/parse.go index 1121590..89b0ac9 100644 --- a/cmd/age/parse.go +++ b/cmd/age/parse.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package main diff --git a/cmd/age/wordlist.go b/cmd/age/wordlist.go index 3afdfa2..ccff11a 100644 --- a/cmd/age/wordlist.go +++ b/cmd/age/wordlist.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package main diff --git a/internal/bech32/bech32.go b/internal/bech32/bech32.go index 29310d4..c12864f 100644 --- a/internal/bech32/bech32.go +++ b/internal/bech32/bech32.go @@ -1,5 +1,5 @@ // Copyright (c) 2017 Takatoshi Nakagawa -// Copyright (c) 2019 Google LLC +// Copyright (c) 2019 The age Authors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/bech32/bech32_test.go b/internal/bech32/bech32_test.go index 72f1ab6..4568d62 100644 --- a/internal/bech32/bech32_test.go +++ b/internal/bech32/bech32_test.go @@ -1,6 +1,6 @@ // Copyright (c) 2013-2017 The btcsuite developers // Copyright (c) 2016-2017 The Lightning Network Developers -// Copyright (c) 2019 Google LLC +// Copyright (c) 2019 The age Authors // // Permission to use, copy, modify, and distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/internal/format/format.go b/internal/format/format.go index ecded7d..5da6463 100644 --- a/internal/format/format.go +++ b/internal/format/format.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. // Package format implements the age file format. package format diff --git a/internal/format/format_test.go b/internal/format/format_test.go index 6a612ce..4f3b11a 100644 --- a/internal/format/format_test.go +++ b/internal/format/format_test.go @@ -1,8 +1,6 @@ -// Copyright 2021 Google LLC -// +// Copyright 2021 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package format_test diff --git a/internal/stream/stream.go b/internal/stream/stream.go index bf0be5e..084bbd1 100644 --- a/internal/stream/stream.go +++ b/internal/stream/stream.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. // Package stream implements a variant of the STREAM chunked encryption scheme. package stream diff --git a/internal/stream/stream_test.go b/internal/stream/stream_test.go index 57c99eb..e3c18d9 100644 --- a/internal/stream/stream_test.go +++ b/internal/stream/stream_test.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package stream_test diff --git a/parse.go b/parse.go index 70b36a6..373d1a8 100644 --- a/parse.go +++ b/parse.go @@ -1,8 +1,6 @@ -// Copyright 2021 Google LLC -// +// Copyright 2021 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package age diff --git a/primitives.go b/primitives.go index daed63b..804b019 100644 --- a/primitives.go +++ b/primitives.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package age diff --git a/recipients_test.go b/recipients_test.go index 70bee16..52ceb58 100644 --- a/recipients_test.go +++ b/recipients_test.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package age_test diff --git a/scrypt.go b/scrypt.go index 183735e..93e2a19 100644 --- a/scrypt.go +++ b/scrypt.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package age diff --git a/x25519.go b/x25519.go index fc70070..6cd87a8 100644 --- a/x25519.go +++ b/x25519.go @@ -1,8 +1,6 @@ -// Copyright 2019 Google LLC -// +// Copyright 2019 The age Authors. All rights reserved. // Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file or at -// https://developers.google.com/open-source/licenses/bsd +// license that can be found in the LICENSE file. package age