mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-09-11 01:52:30 +00:00
Add dependencies/vendor (whatsapp)
This commit is contained in:
11
vendor/go.mau.fi/libsignal/ecc/ECPublicKey.go
vendored
Normal file
11
vendor/go.mau.fi/libsignal/ecc/ECPublicKey.go
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
package ecc
|
||||
|
||||
// KeySize is the size of EC keys (32) with the EC type byte prepended to it.
|
||||
const KeySize int = 33
|
||||
|
||||
// ECPublicKeyable is an interface for all elliptic curve public keys.
|
||||
type ECPublicKeyable interface {
|
||||
Serialize() []byte
|
||||
Type() int
|
||||
PublicKey() [32]byte
|
||||
}
|
Reference in New Issue
Block a user