Merge pull request #127 from SuperSandro2000/patch-1

Cleanup duplicated import
This commit is contained in:
Bernd Schoolmann 2024-03-02 03:07:05 +01:00 committed by GitHub
commit ce6cb0503c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,6 @@ import (
"crypto/cipher" "crypto/cipher"
"crypto/hmac" "crypto/hmac"
"crypto/rand" "crypto/rand"
cryptorand "crypto/rand"
"crypto/rsa" "crypto/rsa"
"crypto/sha1" "crypto/sha1"
"crypto/sha256" "crypto/sha256"
@ -196,7 +195,7 @@ func EncryptWith(data []byte, encType EncStringType, key SymmetricEncryptionKey)
return s, err return s, err
} }
s.IV = make([]byte, aes.BlockSize) s.IV = make([]byte, aes.BlockSize)
if _, err := io.ReadFull(cryptorand.Reader, s.IV); err != nil { if _, err := io.ReadFull(rand.Reader, s.IV); err != nil {
return s, err return s, err
} }
s.CT = make([]byte, len(data)) s.CT = make([]byte, len(data))