package kadminimport ()// ChangePasswdData is the payload to a password change message.typeChangePasswdDatastruct { NewPasswd []byte`asn1:"explicit,tag:0"` TargName types.PrincipalName`asn1:"explicit,optional,tag:1"` TargRealm string`asn1:"generalstring,optional,explicit,tag:2"`}// Marshal ChangePasswdData into a byte slice.func ( *ChangePasswdData) () ([]byte, error) { , := asn1.Marshal(*)if != nil {return []byte{}, }//b = asn1tools.AddASNAppTag(b, asnAppTag.)return , nil}
The pages are generated with Goldsv0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds.