mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2025-04-03 16:21:52 +00:00
Merge pull request #332 from jcrd/kdf-header
Check for KDF header in is_valid_key
This commit is contained in:
commit
a14a39ae12
8
tomb
8
tomb
@ -921,6 +921,14 @@ is_valid_key() {
|
||||
_message "Key is an image, it might be valid."
|
||||
return 0 }
|
||||
|
||||
[[ $KDF == 1 ]] && { ! option_is_set -g } && { option_is_set --kdf } && {
|
||||
_head="${key[(f)1]}"
|
||||
[[ $_head =~ '^_KDF_' ]] || {
|
||||
_warning "Key is missing KDF header."
|
||||
return 1
|
||||
}
|
||||
}
|
||||
|
||||
[[ $key =~ "BEGIN PGP" ]] && {
|
||||
_message "Key is valid."
|
||||
return 0 }
|
||||
|
Loading…
x
Reference in New Issue
Block a user