summaryrefslogtreecommitdiffstats
path: root/vendor/go.mau.fi/whatsmeow/util
diff options
context:
space:
mode:
authorWim <wim@42.be>2023-08-05 20:43:19 +0200
committerGitHub <noreply@github.com>2023-08-05 20:43:19 +0200
commit56e7bd01ca09ad52b0c4f48f146a20a4f1b78696 (patch)
treeb1355645342667209263cbd355dc0b4254f1e8fe /vendor/go.mau.fi/whatsmeow/util
parent9459495484d6e06a3d46de64fccd8d06f7ccc72c (diff)
downloadmatterbridge-msglm-56e7bd01ca09ad52b0c4f48f146a20a4f1b78696.tar.gz
matterbridge-msglm-56e7bd01ca09ad52b0c4f48f146a20a4f1b78696.tar.bz2
matterbridge-msglm-56e7bd01ca09ad52b0c4f48f146a20a4f1b78696.zip
Update dependencies and remove old matterclient lib (#2067)HEADmaster
Diffstat (limited to 'vendor/go.mau.fi/whatsmeow/util')
-rw-r--r--vendor/go.mau.fi/whatsmeow/util/keys/keypair.go12
-rw-r--r--vendor/go.mau.fi/whatsmeow/util/randbytes/randbytes.go15
2 files changed, 18 insertions, 9 deletions
diff --git a/vendor/go.mau.fi/whatsmeow/util/keys/keypair.go b/vendor/go.mau.fi/whatsmeow/util/keys/keypair.go
index 55679ff2..75b050aa 100644
--- a/vendor/go.mau.fi/whatsmeow/util/keys/keypair.go
+++ b/vendor/go.mau.fi/whatsmeow/util/keys/keypair.go
@@ -8,11 +8,10 @@
package keys
import (
- "crypto/rand"
- "fmt"
-
"go.mau.fi/libsignal/ecc"
"golang.org/x/crypto/curve25519"
+
+ "go.mau.fi/whatsmeow/util/randbytes"
)
type KeyPair struct {
@@ -32,12 +31,7 @@ func NewKeyPairFromPrivateKey(priv [32]byte) *KeyPair {
}
func NewKeyPair() *KeyPair {
- var priv [32]byte
-
- _, err := rand.Read(priv[:])
- if err != nil {
- panic(fmt.Errorf("failed to generate curve25519 private key: %w", err))
- }
+ priv := *(*[32]byte)(randbytes.Make(32))
priv[0] &= 248
priv[31] &= 127
diff --git a/vendor/go.mau.fi/whatsmeow/util/randbytes/randbytes.go b/vendor/go.mau.fi/whatsmeow/util/randbytes/randbytes.go
new file mode 100644
index 00000000..befcd4e9
--- /dev/null
+++ b/vendor/go.mau.fi/whatsmeow/util/randbytes/randbytes.go
@@ -0,0 +1,15 @@
+package randbytes
+
+import (
+ "crypto/rand"
+ "fmt"
+)
+
+func Make(length int) []byte {
+ random := make([]byte, length)
+ _, err := rand.Read(random)
+ if err != nil {
+ panic(fmt.Errorf("failed to get random bytes: %w", err))
+ }
+ return random
+}