mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
This relates to #12577 --------- Co-authored-by: gillespi314 <73313222+gillespi314@users.noreply.github.com> Co-authored-by: Roberto Dip <dip.jesusr@gmail.com>
19 lines
343 B
Go
19 lines
343 B
Go
//go:build !windows
|
|
|
|
package bitlocker
|
|
|
|
func GetRecoveryKeys(targetVolume string) (map[string]string, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func EncryptVolume(targetVolume string) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
func DecryptVolume(targetVolume string) error {
|
|
return nil
|
|
}
|
|
|
|
func GetEncryptionStatus() ([]VolumeStatus, error) {
|
|
return nil, nil
|
|
}
|