forked from TrueCloudLab/certificates
Update softcas.go
This commit is contained in:
parent
e9bfa061b8
commit
f3396bf964
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ type SoftCAS struct {
|
||||||
func New(ctx context.Context, opts apiv1.Options) (*SoftCAS, error) {
|
func New(ctx context.Context, opts apiv1.Options) (*SoftCAS, error) {
|
||||||
if !opts.IsCreator {
|
if !opts.IsCreator {
|
||||||
switch {
|
switch {
|
||||||
case opts.CertificateChain == nil:
|
case len(opts.CertificateChain) == 0:
|
||||||
return nil, errors.New("softCAS 'CertificateChain' cannot be nil")
|
return nil, errors.New("softCAS 'CertificateChain' cannot be nil")
|
||||||
case opts.Signer == nil:
|
case opts.Signer == nil:
|
||||||
return nil, errors.New("softCAS 'signer' cannot be nil")
|
return nil, errors.New("softCAS 'signer' cannot be nil")
|
||||||
|
|
Loading…
Reference in a new issue