From 40ce22d26a05a3307df3ce0fba8633204f1a506d Mon Sep 17 00:00:00 2001 From: Laurent Cheylus Date: Sat, 21 Jun 2025 05:28:22 +0200 Subject: [PATCH] crypto: remove unused os import for SHA512 tests (#24768) --- vlib/crypto/sha512/sha384_shavs_test.v | 1 - vlib/crypto/sha512/sha512_224_shavs_test.v | 1 - vlib/crypto/sha512/sha512_256_shavs_test.v | 1 - vlib/crypto/sha512/sha512_shavs_test.v | 1 - 4 files changed, 4 deletions(-) diff --git a/vlib/crypto/sha512/sha384_shavs_test.v b/vlib/crypto/sha512/sha384_shavs_test.v index e3760a922..8df0187c0 100644 --- a/vlib/crypto/sha512/sha384_shavs_test.v +++ b/vlib/crypto/sha512/sha384_shavs_test.v @@ -6,7 +6,6 @@ // SHA384ShortMsg.rsp import crypto.sha512 import encoding.hex -import os // This structure deals with short message tests struct SHA384TestCase { diff --git a/vlib/crypto/sha512/sha512_224_shavs_test.v b/vlib/crypto/sha512/sha512_224_shavs_test.v index a62be1eaa..25c8fb3c9 100644 --- a/vlib/crypto/sha512/sha512_224_shavs_test.v +++ b/vlib/crypto/sha512/sha512_224_shavs_test.v @@ -6,7 +6,6 @@ // SHA512_224ShortMsg.rsp import crypto.sha512 import encoding.hex -import os // This structure deals with short message tests struct SHA512_224TestCase { diff --git a/vlib/crypto/sha512/sha512_256_shavs_test.v b/vlib/crypto/sha512/sha512_256_shavs_test.v index 665dc79ea..99fd8e6b0 100644 --- a/vlib/crypto/sha512/sha512_256_shavs_test.v +++ b/vlib/crypto/sha512/sha512_256_shavs_test.v @@ -6,7 +6,6 @@ // SHA512_256ShortMsg.rsp import crypto.sha512 import encoding.hex -import os // This structure deals with short message tests struct SHA512_256TestCase { diff --git a/vlib/crypto/sha512/sha512_shavs_test.v b/vlib/crypto/sha512/sha512_shavs_test.v index 730c165b6..85b162176 100644 --- a/vlib/crypto/sha512/sha512_shavs_test.v +++ b/vlib/crypto/sha512/sha512_shavs_test.v @@ -6,7 +6,6 @@ // SHA512ShortMsg.rsp import crypto.sha512 import encoding.hex -import os // This structure deals with short message tests struct SHA512TestCase { -- 2.39.5