From 0838b510f8a94964138e09b76434d98ca964df82 Mon Sep 17 00:00:00 2001 From: Halil Durak Date: Fri, 20 Mar 2026 11:00:35 +0300 Subject: [PATCH] `src/crypto.zig` -> `src/sys/libcrypto.zig` Now that we have `sys/`, I think this makes more sense. --- src/{crypto.zig => sys/libcrypto.zig} | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) rename src/{crypto.zig => sys/libcrypto.zig} (92%) diff --git a/src/crypto.zig b/src/sys/libcrypto.zig similarity index 92% rename from src/crypto.zig rename to src/sys/libcrypto.zig index 58f6349f..6b5657f6 100644 --- a/src/crypto.zig +++ b/src/sys/libcrypto.zig @@ -1,3 +1,21 @@ +// Copyright (C) 2023-2026 Lightpanda (Selecy SAS) +// +// Francis Bouvier +// Pierre Tachoire +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// 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 Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + //! libcrypto utilities we use throughout browser. const std = @import("std");