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
}
func (m *mockAuthority) GetCertificateRevocationList() ([]byte, error) {
panic("implement me")
}
// TODO: remove once Authorize is deprecated.
func (m *mockAuthority) Authorize(ctx context.Context, ott string) ([]provisioner.SignOption, error) {
return m.AuthorizeSign(ott)

View file

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