goldwarden/cli/agent/systemauth/pinentry/keybase-pinentry/pinentry_not_osx.go
2024-05-04 01:06:24 +02:00

17 lines
457 B
Go

// Copyright 2015 Keybase, Inc. All rights reserved. Use of
// this source code is governed by the included BSD license.
//go:build !darwin
// +build !darwin
package pinentry
type pinentrySecretStoreInfo struct{}
func (pi *pinentryInstance) useSecretStore(useSecretStore bool) (pinentrySecretStoreInfo, error) {
return pinentrySecretStoreInfo{}, nil
}
func (pi *pinentryInstance) shouldStoreSecret(info pinentrySecretStoreInfo) bool {
return false
}