mirror of
https://github.com/kopia/kopia.git
synced 2026-01-28 16:23:04 -05:00
7 lines
187 B
Go
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)
|
|
}
|