From 6e18d3d6a1d837ff5e00612934b9722a7028c2ed Mon Sep 17 00:00:00 2001 From: Nathan Whitaker Date: Thu, 30 Jan 2025 14:36:27 -0800 Subject: [PATCH] fmt, copyright --- ext/node/ops/crypto/digest/ring_sha2.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ext/node/ops/crypto/digest/ring_sha2.rs b/ext/node/ops/crypto/digest/ring_sha2.rs index 194bb6d3748e1a..b1d353088bfbf5 100644 --- a/ext/node/ops/crypto/digest/ring_sha2.rs +++ b/ext/node/ops/crypto/digest/ring_sha2.rs @@ -1,6 +1,9 @@ -use digest::generic_array::ArrayLength; +// Copyright 2018-2025 the Deno authors. MIT license. + use std::marker::PhantomData; +use digest::generic_array::ArrayLength; + pub trait RingDigestAlgo { fn algorithm() -> &'static ring::digest::Algorithm; type OutputSize: ArrayLength + 'static;