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

This reverts commit 2b9e919cd8.
This commit is contained in:
Evan Su 2025-02-11 19:13:03 -05:00
parent 770be1e714
commit dfcaf2ab2a

View file

@ -4,10 +4,8 @@ import (
"archive/zip"
"bytes"
"crypto/cipher"
"crypto/hkdf"
"crypto/hmac"
"crypto/rand"
"crypto/sha3"
"flag"
"fmt"
"hash"
@ -27,6 +25,8 @@ 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"
)