diff options
author | sr55 <[email protected]> | 2011-06-11 14:52:15 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-06-11 14:52:15 +0000 |
commit | c2d584cfe459995bcbe73952581a89caa0be6e07 (patch) | |
tree | 9156b7e1b11f91f6c5d27f831609bbb414a325f8 /win/CS | |
parent | 7f3f8f9cedbafe7f7a5098fd8ea925781ece4bbb (diff) |
WinGui:
- Force Growl Communicator to use SHA1 instead of MD5.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4040 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Functions/GrowlCommunicator.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Functions/GrowlCommunicator.cs b/win/CS/HandBrake.ApplicationServices/Functions/GrowlCommunicator.cs index a28457836..aab8c5f19 100644 --- a/win/CS/HandBrake.ApplicationServices/Functions/GrowlCommunicator.cs +++ b/win/CS/HandBrake.ApplicationServices/Functions/GrowlCommunicator.cs @@ -105,9 +105,10 @@ namespace HandBrake.ApplicationServices.Functions if (growl == null)
{
growl = new GrowlConnector
- {
- EncryptionAlgorithm = Cryptography.SymmetricAlgorithmType.PlainText
- };
+ {
+ EncryptionAlgorithm = Cryptography.SymmetricAlgorithmType.PlainText,
+ KeyHashAlgorithm = Cryptography.HashAlgorithmType.SHA1
+ };
application = new Application("Handbrake")
{
|