mirror of
https://github.com/kopia/kopia.git
synced 2026-01-28 16:23:04 -05:00
8 lines
229 B
Go
8 lines
229 B
Go
package auth
|
|
|
|
// SecurityOptions represents options related to authentication (e.g. key derivation)
|
|
type SecurityOptions struct {
|
|
UniqueID []byte `json:"uniqueID"`
|
|
KeyDerivationAlgorithm string `json:"keyAlgo"`
|
|
}
|