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

25 lines
512 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 TestFingerprintEmptyPK(t *testing.T) {
fingerprint := func(pubkey *rsa.PublicKey) string {
return fmt.Sprintf("%08x", uint64(crypto.RSAFingerprint(pubkey)))
}
expected := []string{}
assert.Len(t, EmptyPK, len(expected))
for i, pubkey := range EmptyPK {
assert.Equal(t, expected[i], fingerprint(pubkey))
}
}