open-vault/sdk/helper/password/password.go
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

18 lines
363 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
// DEPRECATED: this has been moved to go-secure-stdlib and will be removed
package password
import (
"os"
extpassword "github.com/hashicorp/go-secure-stdlib/password"
)
var ErrInterrupted = extpassword.ErrInterrupted
func Read(f *os.File) (string, error) {
return extpassword.Read(f)
}