type UserEntry struct {
tokenutil.TokenParams// Password is deprecated in Vault 0.2 in favor of// PasswordHash, but is retained for backwards compatibility.
Password string// PasswordHash is a bcrypt hash of the password. This is// used instead of the actual password in Vault 0.2+.
PasswordHash []byte Policies []string// Duration after which the user will be revoked unless renewed TTL time.Duration// Maximum duration for which user can be valid MaxTTL time.Duration BoundCIDRs []*sockaddr.SockAddrMarshaler}