Files
mautrix-telegram/pkg/gotd/cmd/rsagen/_example/rsagen_single_test.go
T
2025-06-27 20:03:37 -07:00

21 lines
421 B
Go

// Code generated by rsagen, DO NOT EDIT.
package example
import (
"crypto/rsa"
"fmt"
"testing"
"github.com/stretchr/testify/assert"
"go.mau.fi/mautrix-telegram/pkg/gotd/crypto"
)
func TestFingerprintSinglePK(t *testing.T) {
fingerprint := func(pubkey *rsa.PublicKey) string {
return fmt.Sprintf("%08x", uint64(crypto.RSAFingerprint(pubkey)))
}
assert.Equal(t, "c3b42b026ce86b21", fingerprint(SinglePK))
}