mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2026-06-05 19:13:39 +00:00
* Find the new file Next extract Core.dll, patch, reinsert * Prepare Linux script too * Extract and patch Core.dll again * Make build script dynamic * Cleanup after ourselves * Build, then delete file * Attempt to deconstruct the new file * Add missing quotes * Add missing file * Rectify dll location * Fix dumb extra character matching * Dynamically find LicensingService and improve error reporting * Upgrade package * Implement new code * Filter out new lines * Force the runtime config * Use correct external .NET library * Update to .NET 10 in build.sh Copy .NET 10 runtime from aspnet10.0-alpine3.23 to the bitwarden-lite container * Update to .NET 10 in build.ps1 Copy .NET 10 runtime from aspnet:10.0-alpine3.23 to bitwarden-lite container * Update generateKeys.sh to OpenSSL 3.x-compatible Update to OpenSSL 3.x-compatible cipher generation * Update generateKeys.ps1 to OpenSSL 3.x-compatible Update to OpenSSL 3.x-compatible cipher * Update bitBetter Dockerfile to .NET 10 * Update bitBetter.csproj to .NET 10 * Switch to X509CertificateLoader, switch to patching multiple thumbprint certificates Update Program.cs in bitBetter to switch from deprecated X509Certificate to X509CertificateLoader Patch multiple thumbprint certificate instances * Update licenseGen Dockerfile to .NET 10 * Update licenseGen.csproj to .NET 10 * Remove extra line * Get rid of extra line * Update deprecated X509Certificate2 in LicenseGen * Cleanup * Fix tabbing --------- Co-authored-by: Michiel Hazelhof <m.hazelhof@fyn.nl> Co-authored-by: huntb4646 <94577767+huntb4646@users.noreply.github.com>
26 lines
1.1 KiB
PowerShell
26 lines
1.1 KiB
PowerShell
$ErrorActionPreference = 'Stop'
|
|
$PSNativeCommandUseErrorActionPreference = $true
|
|
|
|
# get the basic openssl binary path
|
|
$opensslbinary = "$Env:Programfiles\OpenSSL-Win64\bin\openssl.exe"
|
|
|
|
# if openssl is not installed attempt to install it
|
|
if (!(Get-Command $opensslbinary -errorAction SilentlyContinue))
|
|
{
|
|
winget install openssl
|
|
}
|
|
|
|
# if previous keys exist, remove them
|
|
if (Test-Path "$pwd\.keys")
|
|
{
|
|
Remove-Item "$pwd\.keys" -Recurse -Force
|
|
}
|
|
|
|
# create new directory
|
|
New-item -ItemType Directory -Path "$pwd\.keys"
|
|
|
|
# generate actual keys
|
|
Invoke-Expression "& '$opensslbinary' req -x509 -newkey rsa:4096 -keyout `"$pwd\.keys\key.pem`" -out `"$pwd\.keys\cert.cer`" -days 36500 -subj '/CN=www.mydom.com/O=My Company Name LTD./C=US' -outform DER -passout pass:test"
|
|
Invoke-Expression "& '$opensslbinary' x509 -inform DER -in `"$pwd\.keys\cert.cer`" -out `"$pwd\.keys\cert.pem`""
|
|
Invoke-Expression "& '$opensslbinary' pkcs12 -export -out `"$pwd\.keys\cert.pfx`" -inkey `"$pwd\.keys\key.pem`" -in `"$pwd\.keys\cert.pem`" -passin pass:test -passout pass:test -certpbe AES-256-CBC -keypbe AES-256-CBC -macalg SHA256"
|