Use crypto/(hkdf, sha3) instead of golang.org/x/crypto

Go 1.24 brought these from x/crypto into the standard library
This commit is contained in:
Evan Su 2025-02-11 18:58:31 -05:00 committed by GitHub
parent 11157a4b19
commit 2b9e919cd8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,8 +4,10 @@ import (
"archive/zip"
"bytes"
"crypto/cipher"
"crypto/hkdf"
"crypto/hmac"
"crypto/rand"
"crypto/sha3"
"flag"
"fmt"
"hash"
@ -25,8 +27,6 @@ import (
"golang.org/x/crypto/argon2"
"golang.org/x/crypto/blake2b"
"golang.org/x/crypto/chacha20"
"golang.org/x/crypto/hkdf"
"golang.org/x/crypto/sha3"
"golang.org/x/term"
)