mirror of
https://github.com/kopia/kopia.git
synced 2026-01-26 07:18:02 -05:00
fix support for encrypted blocks with dash suffix
This commit is contained in:
@@ -99,6 +99,9 @@ func symmetricEncrypt(createCipher func(key []byte) (cipher.Block, error), key [
|
||||
}
|
||||
|
||||
func decodeHexSuffix(s string, length int) ([]byte, error) {
|
||||
if p := strings.Index(s, "-"); p >= 0 {
|
||||
s = s[0:p]
|
||||
}
|
||||
return hex.DecodeString(s[len(s)-length:])
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user