You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
682 B
28 lines
682 B
3 years ago
|
package crypto
|
||
|
|
||
|
import (
|
||
|
"crypto/rsa"
|
||
|
"crypto/sha1" // #nosec
|
||
|
"encoding/binary"
|
||
|
"math/big"
|
||
|
|
||
|
"github.com/gotd/td/bin"
|
||
|
)
|
||
|
|
||
|
// RSAFingerprint returns fingerprint of RSA public key as defined in MTProto.
|
||
|
func RSAFingerprint(key *rsa.PublicKey) int64 {
|
||
|
e := big.NewInt(int64(key.E))
|
||
|
|
||
|
// See "Creating an Authorization Key" for reference:
|
||
|
// * https://core.telegram.org/mtproto/auth_key#dh-exchange-initiation
|
||
|
// rsa_public_key n:string e:string = RSAPublicKey
|
||
|
buf := new(bin.Buffer)
|
||
|
buf.PutBytes(key.N.Bytes())
|
||
|
buf.PutBytes(e.Bytes())
|
||
|
|
||
|
h := sha1.New() // #nosec
|
||
|
_, _ = h.Write(buf.Buf)
|
||
|
result := h.Sum(nil)[12:sha1.Size]
|
||
|
return int64(binary.LittleEndian.Uint64(result))
|
||
|
}
|