From: Sergey Matveev Date: Mon, 16 Dec 2024 08:22:10 +0000 (+0300) Subject: Add missing copyright information X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=674d6ddc8b9d78db928eb08501d23f49b09556f9ade1392ab3709bf0d06f75c3;p=keks.git Add missing copyright information --- diff --git a/go/atom/be/be.go b/go/atom/be/be.go index 3d16b7e..ad79db7 100644 --- a/go/atom/be/be.go +++ b/go/atom/be/be.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify diff --git a/go/atom/dec.go b/go/atom/dec.go index 1497914..48f287e 100644 --- a/go/atom/dec.go +++ b/go/atom/dec.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify diff --git a/go/atom/enc.go b/go/atom/enc.go index 10f15ac..5242b16 100644 --- a/go/atom/enc.go +++ b/go/atom/enc.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify diff --git a/go/atom/raw.go b/go/atom/raw.go index 1528c9f..0148d86 100644 --- a/go/atom/raw.go +++ b/go/atom/raw.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify diff --git a/go/blob.go b/go/blob.go index 2a74d8c..cac2cd1 100644 --- a/go/blob.go +++ b/go/blob.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify diff --git a/go/dec.go b/go/dec.go index 0cec447..0d28a4a 100644 --- a/go/dec.go +++ b/go/dec.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify diff --git a/go/enc.go b/go/enc.go index eb3910e..13c8309 100644 --- a/go/enc.go +++ b/go/enc.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify diff --git a/go/fromgo.go b/go/fromgo.go index 6c22467..f357583 100644 --- a/go/fromgo.go +++ b/go/fromgo.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify diff --git a/go/mapstruct/dec.go b/go/mapstruct/dec.go index 6ec8b2e..81202b5 100644 --- a/go/mapstruct/dec.go +++ b/go/mapstruct/dec.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify diff --git a/go/mapstruct/map.go b/go/mapstruct/map.go index cec5f6a..640f40e 100644 --- a/go/mapstruct/map.go +++ b/go/mapstruct/map.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify diff --git a/go/pki/av.go b/go/pki/av.go index 830bfc1..d4614c1 100644 --- a/go/pki/av.go +++ b/go/pki/av.go @@ -1,3 +1,18 @@ +// GoKEKS/PKI -- PKI-related capabilities based on KEKS encoded formats +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package pki import ( diff --git a/go/pki/cer.go b/go/pki/cer.go index bfdb495..eb43aec 100644 --- a/go/pki/cer.go +++ b/go/pki/cer.go @@ -1,3 +1,18 @@ +// GoKEKS/PKI -- PKI-related capabilities based on KEKS encoded formats +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package pki import ( diff --git a/go/pki/cmd/kekscertool/main.go b/go/pki/cmd/kekscertool/main.go index 7a7e1f4..d6bfba4 100644 --- a/go/pki/cmd/kekscertool/main.go +++ b/go/pki/cmd/kekscertool/main.go @@ -1,3 +1,18 @@ +// kekscertool -- dealing with KEKS-encoded certificates utility +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package main import ( diff --git a/go/pki/cmd/kekssdtool/main.go b/go/pki/cmd/kekssdtool/main.go index 781daef..52e56de 100644 --- a/go/pki/cmd/kekssdtool/main.go +++ b/go/pki/cmd/kekssdtool/main.go @@ -1,3 +1,18 @@ +// kekssdtool -- dealing with KEKS-encoded signed-data utility +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package main import ( diff --git a/go/pki/doc.go b/go/pki/doc.go index 196a44d..59945dd 100644 --- a/go/pki/doc.go +++ b/go/pki/doc.go @@ -1,2 +1,2 @@ -// keks/pki provides PKI-related capabilities based on KEKS encoded formats. +// GoKEKS/PKI provides PKI-related capabilities based on KEKS encoded formats package pki diff --git a/go/pki/ed25519-blake2b/kp.go b/go/pki/ed25519-blake2b/kp.go index 06dbdc2..92ff449 100644 --- a/go/pki/ed25519-blake2b/kp.go +++ b/go/pki/ed25519-blake2b/kp.go @@ -1,3 +1,18 @@ +// GoKEKS/PKI -- PKI-related capabilities based on KEKS encoded formats +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package ed25519blake2b import ( diff --git a/go/pki/ed25519-blake2b/prv.go b/go/pki/ed25519-blake2b/prv.go index 638e1d1..c25e7e6 100644 --- a/go/pki/ed25519-blake2b/prv.go +++ b/go/pki/ed25519-blake2b/prv.go @@ -1,3 +1,18 @@ +// GoKEKS/PKI -- PKI-related capabilities based on KEKS encoded formats +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package ed25519blake2b import ( diff --git a/go/pki/ed25519-blake2b/verify.go b/go/pki/ed25519-blake2b/verify.go index b6cd21b..afec09e 100644 --- a/go/pki/ed25519-blake2b/verify.go +++ b/go/pki/ed25519-blake2b/verify.go @@ -1,3 +1,18 @@ +// GoKEKS/PKI -- PKI-related capabilities based on KEKS encoded formats +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package ed25519blake2b import ( diff --git a/go/pki/hash/algo.go b/go/pki/hash/algo.go index d5a0040..c83e58f 100644 --- a/go/pki/hash/algo.go +++ b/go/pki/hash/algo.go @@ -1,3 +1,18 @@ +// GoKEKS/PKI -- PKI-related capabilities based on KEKS encoded formats +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package hash import ( diff --git a/go/pki/prv.go b/go/pki/prv.go index 1c642ba..0f9a0a3 100644 --- a/go/pki/prv.go +++ b/go/pki/prv.go @@ -1,3 +1,18 @@ +// GoKEKS/PKI -- PKI-related capabilities based on KEKS encoded formats +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package pki import ( diff --git a/go/pki/signed-data.go b/go/pki/signed-data.go index 3ee5db8..fd2ea44 100644 --- a/go/pki/signed-data.go +++ b/go/pki/signed-data.go @@ -1,3 +1,18 @@ +// GoKEKS/PKI -- PKI-related capabilities based on KEKS encoded formats +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package pki import ( diff --git a/go/pki/utils/utils.go b/go/pki/utils/utils.go index 5390719..2b16054 100644 --- a/go/pki/utils/utils.go +++ b/go/pki/utils/utils.go @@ -1,3 +1,18 @@ +// GoKEKS/PKI -- PKI-related capabilities based on KEKS encoded formats +// Copyright (C) 2024-2025 Sergey Matveev +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation, version 3 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this program. If not, see . + package utils import ( diff --git a/go/togo.go b/go/togo.go index ce4f86a..6ced137 100644 --- a/go/togo.go +++ b/go/togo.go @@ -1,4 +1,4 @@ -// keks -- Go KEKS encoder implementation +// GoKEKS -- Go KEKS codec implementation // Copyright (C) 2024-2025 Sergey Matveev // // This program is free software: you can redistribute it and/or modify