mirror of
https://github.com/kopia/kopia.git
synced 2026-03-19 14:46:30 -04: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)
|
|
}
|