File: nonce.go

package info (click to toggle)
golang-github-smallstep-certificates 0.28.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,684 kB
  • sloc: sh: 367; makefile: 129
file content (9 lines) | stat: -rw-r--r-- 171 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
package acme

// Nonce represents an ACME nonce type.
type Nonce string

// String implements the ToString interface.
func (n Nonce) String() string {
	return string(n)
}