From cc1475c91da6005d72192b426e8b9ec6db7a3f74 Mon Sep 17 00:00:00 2001 From: HydroH Date: Fri, 16 May 2025 06:21:25 +0800 Subject: [PATCH] std: remove `std.crypto.Certificate.Parsed.pubKeySigAlgo` method (#23811) --- lib/std/crypto/Certificate.zig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/std/crypto/Certificate.zig b/lib/std/crypto/Certificate.zig index c89141ec7d..f4e7900dae 100644 --- a/lib/std/crypto/Certificate.zig +++ b/lib/std/crypto/Certificate.zig @@ -223,10 +223,6 @@ pub const Parsed = struct { return p.slice(p.pub_key_slice); } - pub fn pubKeySigAlgo(p: Parsed) []const u8 { - return p.slice(p.pub_key_signature_algorithm_slice); - } - pub fn message(p: Parsed) []const u8 { return p.slice(p.message_slice); }