import "41.neocities.org/playReady/device"
type Config struct { Version string `json:"client_version"` CertChain string `json:"cert_chain"` SigningKey string `json:"signing"` EncryptKey string `json:"encrypt"` }
type LocalDevice struct { CertificateChain certificate.Chain SigningKey, EncryptKey crypto.EcKey Version string }
func (ld *LocalDevice) Load(path string) error
func (ld *LocalDevice) New(CertChain, EncryptionKey, SigningKey []byte, ClientVersion string) error
func (ld LocalDevice) ParseLicense(response string) ([]KeyData, error)