// 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)) }