Skip to content

Commit

Permalink
fix(service): cert newline
Browse files Browse the repository at this point in the history
  • Loading branch information
arkavo-com committed Apr 28, 2024
1 parent 95095be commit ff6d12a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions service/kas/access/publicKey.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ func (p *Provider) LegacyPublicKey(ctx context.Context, in *kaspb.LegacyPublicKe
return nil, errors.Join(ErrConfig, status.Error(codes.Internal, "configuration error"))
}
}
// workaround for Error code 75497574. [ec_key_pair.cpp:650] Failed to create X509 cert struct.error:04800066:PEM routines::bad end line
cert += "\n"
return &wrapperspb.StringValue{Value: cert}, nil
}

Expand Down

0 comments on commit ff6d12a

Please sign in to comment.