mirror of
https://github.com/Picocrypt/CLI.git
synced 2026-03-11 14:44:23 +00:00
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:
parent
11157a4b19
commit
2b9e919cd8
1 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue