- Updated io.Medium interface with Open() and Create() methods to support streaming. - Migrated pkg/build, pkg/build/builders, and pkg/build/signing to use io.Medium. - Added FS field to build.Config and updated build.Builder interface. - Refactored checksum and archive logic to use io.Medium streaming. - Updated pkg/release and pkg/build/buildcmd to use io.Local. - Updated unit tests to match new signatures.
36 lines
797 B
Go
36 lines
797 B
Go
package signing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/host-uk/core/pkg/io"
|
|
)
|
|
|
|
// WindowsSigner signs binaries using Windows signtool (placeholder).
|
|
type WindowsSigner struct {
|
|
config WindowsConfig
|
|
}
|
|
|
|
// Compile-time interface check.
|
|
var _ Signer = (*WindowsSigner)(nil)
|
|
|
|
// NewWindowsSigner creates a new Windows signer.
|
|
func NewWindowsSigner(cfg WindowsConfig) *WindowsSigner {
|
|
return &WindowsSigner{config: cfg}
|
|
}
|
|
|
|
// Name returns "signtool".
|
|
func (s *WindowsSigner) Name() string {
|
|
return "signtool"
|
|
}
|
|
|
|
// Available returns false (not yet implemented).
|
|
func (s *WindowsSigner) Available() bool {
|
|
return false
|
|
}
|
|
|
|
// Sign is a placeholder that does nothing.
|
|
func (s *WindowsSigner) Sign(ctx context.Context, fs io.Medium, binary string) error {
|
|
// TODO: Implement Windows signing
|
|
return nil
|
|
}
|