MCPcopy Index your code
hub / github.com/coder/coder / DecodeString

Method DecodeString

coderd/database/modelmethods.go:852–854  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

850}
851
852func (k CryptoKey) DecodeString() ([]byte, error) {
853 return hex.DecodeString(k.Secret.String)
854}
855
856func (k CryptoKey) CanSign(now time.Time) bool {
857 isAfterStart := !k.StartsAt.IsZero() && !now.Before(k.StartsAt)

Calls

no outgoing calls