mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
add salt to upload key decryption step
This commit is contained in:
parent
6883864e2d
commit
56c09eae90
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ $encUploadKeystorePath = $($rootPath + "\src\Android\upload-keystore.jks.enc");
|
|||
$secureFilePath = $($rootPath + "\secure-file\tools\secure-file.exe");
|
||||
|
||||
Invoke-Expression "& `"$secureFilePath`" -decrypt $($encKeystorePath) -secret $($env:keystore_dec_secret)"
|
||||
Invoke-Expression "& `"$secureFilePath`" -decrypt $($encUploadKeystorePath) -secret $($env:upload_keystore_dec_secret)"
|
||||
Invoke-Expression "& `"$secureFilePath`" -decrypt $($encUploadKeystorePath) -secret $($env:upload_keystore_dec_secret) `
|
||||
-salt $($env:upload_keystore_dec_salt)"
|
||||
|
||||
echo "########################################"
|
||||
echo "##### Sign Release Configuration"
|
||||
|
|
Loading…
Reference in a new issue