Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EncryptedP2PKey ¶
type EncryptedP2PKey struct { ID int32 `json:"id" gorm:"primary_key"` PeerID models.PeerID `json:"peerId"` PubKey PublicKeyBytes `json:"publicKey"` EncryptedPrivKey []byte `json:"-"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt,omitempty"` DeletedAt null.Time `json:"deletedAt,omitempty"` }
func (EncryptedP2PKey) Decrypt ¶
func (ep2pk EncryptedP2PKey) Decrypt(auth string) (k Key, err error)
Decrypt returns the PrivateKey in e, decrypted via auth, or an error
func (EncryptedP2PKey) GetID ¶ added in v0.9.3
func (ep2pk EncryptedP2PKey) GetID() string
func (*EncryptedP2PKey) SetID ¶ added in v0.9.3
func (ep2pk *EncryptedP2PKey) SetID(value string) error
func (EncryptedP2PKey) TableName ¶
func (EncryptedP2PKey) TableName() string
type Key ¶
Key represents a libp2p private key
func (Key) MustGetPeerID ¶ added in v0.9.6
func (Key) ToEncryptedP2PKey ¶
func (k Key) ToEncryptedP2PKey(auth string, scryptParams utils.ScryptParams) (s EncryptedP2PKey, err error)
type PublicKeyBytes ¶ added in v0.9.3
type PublicKeyBytes []byte
PublicKeyBytes is generated using cryptop2p.PubKey.Raw()
func (PublicKeyBytes) MarshalJSON ¶ added in v0.9.3
func (pkb PublicKeyBytes) MarshalJSON() ([]byte, error)
func (PublicKeyBytes) String ¶ added in v0.9.3
func (pkb PublicKeyBytes) String() string
func (*PublicKeyBytes) UnmarshalJSON ¶ added in v0.9.3
func (pkb *PublicKeyBytes) UnmarshalJSON(input []byte) error
Click to show internal directories.
Click to hide internal directories.