fleet/orbit/pkg/luks/luks_stub.go
Juan Fernandez 55fec5283e
Re-verify Linux disk encryption #26693 (#29034)
Fixes #26693 

Added functionality to verify that the escrowed LUKS disk encryption key is valid. To achieve this, two new fleetd tables were added: lsblk and  cryptsetup_luks_salt/table to compare the stored encryption key with the ones present on the host.
2025-05-22 16:15:26 -04:00

19 lines
400 B
Go

//go:build !linux
// +build !linux
package luks
import (
"context"
"github.com/fleetdm/fleet/v4/server/fleet"
)
// Run is a placeholder method for non-Linux builds.
func (lr *LuksRunner) Run(oc *fleet.OrbitConfig) error {
return nil
}
// GetLuksDump is a placeholder method for non-Linux builds.
func GetLuksDump(ctx context.Context, devicePath string) (*LuksDump, error) {
return nil, nil
}