implemented some requested changes

This commit is contained in:
Raal Goff 2022-04-06 08:31:40 +08:00
parent 53dbe2309b
commit 49c41636cc
2 changed files with 5 additions and 1 deletions

View file

@ -201,6 +201,10 @@ type mockAuthority struct {
version func() authority.Version version func() authority.Version
} }
func (m *mockAuthority) GetCertificateRevocationList() ([]byte, error) {
panic("implement me")
}
// TODO: remove once Authorize is deprecated. // TODO: remove once Authorize is deprecated.
func (m *mockAuthority) Authorize(ctx context.Context, ott string) ([]provisioner.SignOption, error) { func (m *mockAuthority) Authorize(ctx context.Context, ott string) ([]provisioner.SignOption, error) {
return m.AuthorizeSign(ott) return m.AuthorizeSign(ott)

View file

@ -11,8 +11,8 @@ import (
"encoding/json" "encoding/json"
"encoding/pem" "encoding/pem"
"fmt" "fmt"
"net"
"math/big" "math/big"
"net"
"net/http" "net/http"
"strings" "strings"
"time" "time"