Files
kopia/auth/creds.go
2017-08-01 17:47:28 +02:00

7 lines
187 B
Go

package auth
// Credentials encapsulates credentials used to derive master key for repository encryption.
type Credentials interface {
GetMasterKey(f SecurityOptions) ([]byte, error)
}