File: database.go

package info (click to toggle)
golang-github-smallstep-certificates 0.20.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,144 kB
  • sloc: sh: 278; makefile: 170
file content (7 lines) | stat: -rw-r--r-- 105 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
package scep

import "crypto/x509"

type DB interface {
	StoreCertificate(crt *x509.Certificate) error
}