From fccb79e79d8d0334b808ab1e0fa5f573700daffe Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 17 Feb 2018 09:32:11 -0500 Subject: [PATCH] choco store package --- stores/chocolatey/bitwarden.nuspec | 31 +++++++++++++++++++ stores/chocolatey/tools/chocolateyinstall.ps1 | 13 ++++++++ 2 files changed, 44 insertions(+) create mode 100644 stores/chocolatey/bitwarden.nuspec create mode 100644 stores/chocolatey/tools/chocolateyinstall.ps1 diff --git a/stores/chocolatey/bitwarden.nuspec b/stores/chocolatey/bitwarden.nuspec new file mode 100644 index 00000000..fde24ab4 --- /dev/null +++ b/stores/chocolatey/bitwarden.nuspec @@ -0,0 +1,31 @@ + + + + + + bitwarden + 0.0.5 + Where is this Chocolatey package located (think GitHub)? packageSourceUrl is highly recommended for the community feed + kspearrin + Bitwarden + 8bit Solutions LLC + https://bitwarden.com/ + https://cdn.rawgit.com/bitwarden/desktop/51dd1341/resources/icon.png + 2015 + https://github.com/bitwarden/desktop/ + https://help.bitwarden.com/ + https://github.com/bitwarden/desktop/issues + bitwarden password manager + A secure and free password manager for all of your devices. + bitwarden is the easiest and safest way to store all of your logins and passwords while conveniently keeping them synced between all of your devices. + +Password theft is a serious problem. The websites and apps that you use are under attack every day. Security breaches occur and your passwords are stolen. When you reuse the same passwords across apps and websites hackers can easily access your email, bank, and other important accounts. + +Security experts recommend that you use a different, randomly generated password for every account that you create. But how do you manage all those passwords? bitwarden makes it easy for you to create, store, and access your passwords. + +bitwarden stores all of your logins in an encrypted vault that syncs across all of your devices. Since it's fully encrypted before it ever leaves your device, only you have access to your data. Not even the team at bitwarden can read your data, even if we wanted to. Your data is sealed with AES-256 bit encryption, salted hashing, and PBKDF2 SHA-256. + + + + + diff --git a/stores/chocolatey/tools/chocolateyinstall.ps1 b/stores/chocolatey/tools/chocolateyinstall.ps1 new file mode 100644 index 00000000..3af9a9da --- /dev/null +++ b/stores/chocolatey/tools/chocolateyinstall.ps1 @@ -0,0 +1,13 @@ +$ErrorActionPreference = 'Stop'; + +$packageArgs = @{ + packageName = $env:ChocolateyPackageNam + fileType = 'EXE' + url = 'https://github.com/bitwarden/desktop/releases/download/v0.0.5/bitwarden-web-setup-0.0.5.exe' + checksum = '017E5B289EB583E93DB7F108FB5CB0AD28AB44EEE045A8A096B442CAF822567F' + checksumType = 'sha256' + silentArgs = '/S' + validExitCodes= @(0) +} + +Install-ChocolateyPackage @packageArgs