type crypto/ed25519.PrivateKey
16 uses
crypto/ed25519 (current package)
ed25519.go#L57: type PrivateKey []byte
ed25519.go#L60: func (priv PrivateKey) Public() crypto.PublicKey {
ed25519.go#L67: func (priv PrivateKey) Equal(x crypto.PrivateKey) bool {
ed25519.go#L68: xx, ok := x.(PrivateKey)
ed25519.go#L78: func (priv PrivateKey) Seed() []byte {
ed25519.go#L91: func (priv PrivateKey) Sign(rand io.Reader, message []byte, opts crypto.SignerOpts) (signature []byte, err error) {
ed25519.go#L141: func GenerateKey(rand io.Reader) (PublicKey, PrivateKey, error) {
ed25519.go#L162: func NewKeyFromSeed(seed []byte) PrivateKey {
ed25519.go#L189: func Sign(privateKey PrivateKey, message []byte) []byte {
crypto/tls
auth.go#L262: case *ed25519.PrivateKey:
tls.go#L338: priv, ok := cert.PrivateKey.(ed25519.PrivateKey)
tls.go#L361: case *rsa.PrivateKey, *ecdsa.PrivateKey, ed25519.PrivateKey:
crypto/x509
pkcs8.go#L131: case ed25519.PrivateKey:
github.com/coinbase/cdp-sdk/go/auth
jwt.go#L191: privateKey := ed25519.PrivateKey(decoded)
github.com/golang-jwt/jwt/v5
ed25519_utils.go#L32: var pkey ed25519.PrivateKey
ed25519_utils.go#L34: if pkey, ok = parsedKey.(ed25519.PrivateKey); !ok {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |