Skip to content

Commit

Permalink
Digital signatures updated to use SHA256
Browse files Browse the repository at this point in the history
Both in the build script (for future releases of the module) and in the copy of Security.Cryptography.dll in the GitHub repo.
  • Loading branch information
dlwyatt committed Apr 11, 2015
1 parent ca54ca0 commit 792f2f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Binary file modified Security.Cryptography.dll
Binary file not shown.
7 changes: 4 additions & 3 deletions build.psake.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ Task Sign {
)

$splat = @{
Certificate = $cert
IncludeChain = 'All'
Force = $true
Certificate = $cert
IncludeChain = 'All'
Force = $true
HashAlgorithm = 'SHA256'
}

if ($signerTimestampUrl) { $splat['TimestampServer'] = $signerTimestampUrl }
Expand Down

0 comments on commit 792f2f3

Please sign in to comment.