[commits] Horde branch master updated. 8e18490406b9c7ba60fbf57c01c27ba9759b3b9d
Michael M Slusarz
slusarz at horde.org
Thu Apr 16 08:40:48 UTC 2015
The branch "master" has been updated.
The following is a summary of the commits.
from: e635500b6e08b48a93cc7fb47bb4793d36939051
5f1df5b Fix verifying detached signatures
fb9c749 Improvements to compressed packet output
a47e9f5 Implement dash escaping for cleartext signed messages
d96c0f4 unneeded TODO
5710152 Implement signing MIME parts
a382094 Try to support more inputs to encrypt/sign
b6672b4 Add support for encrypt and sign/encrypt MIME parts
74e58e9 Allow signing hashes to be configurable
73b6b48 Allow generate key hash to be configurable
8e18490 Upstream fix: Add support for Blowfish and Twofish ciphers
Summary: http://github.com/horde/horde/compare/e635500b6e08b48a93cc7fb47bb4793d36939051...8e18490406b9c7ba60fbf57c01c27ba9759b3b9d
-----------------------------------------------------------------------
commit 5f1df5bd35e4d92db682c77a44bdf84bc0328323
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Apr 15 11:54:26 2015 -0600
Fix verifying detached signatures
framework/Pgp/lib/Horde/Pgp.php | 7 ++++++-
framework/Pgp/test/Horde/Pgp/Backend/TestBase.php | 3 +--
2 files changed, 7 insertions(+), 3 deletions(-)
http://github.com/horde/horde/commit/5f1df5bd35e4d92db682c77a44bdf84bc0328323
-----------------------------------------------------------------------
commit fb9c74945d5deca824d276a6adca6283b56b4693
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Apr 15 12:26:52 2015 -0600
Improvements to compressed packet output
Make it configurable to not use
Use DEFLATE compression, not ZLIB
Allow 'message' sign output to also be compressed
framework/Pgp/lib/Horde/Pgp.php | 43 +++++++--
framework/Pgp/lib/Horde/Pgp/Backend.php | 13 ++-
framework/Pgp/lib/Horde/Pgp/Backend/Openpgp.php | 72 ++++++++++++---
framework/Pgp/package.xml | 3 +
framework/Pgp/test/Horde/Pgp/Backend/TestBase.php | 101 ++++++++++++++-------
5 files changed, 171 insertions(+), 61 deletions(-)
http://github.com/horde/horde/commit/fb9c74945d5deca824d276a6adca6283b56b4693
-----------------------------------------------------------------------
commit a47e9f531aa3308d592f4ffd4dece794e1a5ce0b
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Apr 15 15:34:27 2015 -0600
Implement dash escaping for cleartext signed messages
framework/Pgp/lib/Horde/Pgp/Element/SignedMessage.php | 43 ++++++++-
framework/Pgp/package.xml | 6 +-
framework/Pgp/test/Horde/Pgp/Element/SignedMessageTest.php | 27 +++++-
framework/Pgp/test/Horde/Pgp/fixtures/dash_escape.txt | 8 ++
framework/Pgp/test/Horde/Pgp/fixtures/dash_escape_escaped.txt | 8 ++
5 files changed, 86 insertions(+), 6 deletions(-)
create mode 100644 framework/Pgp/test/Horde/Pgp/fixtures/dash_escape.txt
create mode 100644 framework/Pgp/test/Horde/Pgp/fixtures/dash_escape_escaped.txt
http://github.com/horde/horde/commit/a47e9f531aa3308d592f4ffd4dece794e1a5ce0b
-----------------------------------------------------------------------
commit d96c0f4b5aa4c50d024e0055e66b9d5454c16d19
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Apr 15 15:49:15 2015 -0600
unneeded TODO
Elgamal is a key exchange protocol - symmetric encryption is done via
cipher only
framework/Pgp/lib/Horde/Pgp/Backend/Openpgp.php | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
http://github.com/horde/horde/commit/d96c0f4b5aa4c50d024e0055e66b9d5454c16d19
-----------------------------------------------------------------------
commit 57101525db3d0bd6b9ab4d4553400fb61d00a4fc
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Apr 15 17:50:53 2015 -0600
Implement signing MIME parts
framework/Pgp/lib/Horde/Pgp.php | 160 -----------------
framework/Pgp/lib/Horde/Pgp/Element/Signature.php | 21 ++-
framework/Pgp/lib/Horde/Pgp/Mime.php | 196 +++++++++++++++++++++
framework/Pgp/package.xml | 4 +
framework/Pgp/test/Horde/Pgp/MimeTest.php | 90 ++++++++++
5 files changed, 306 insertions(+), 165 deletions(-)
create mode 100644 framework/Pgp/lib/Horde/Pgp/Mime.php
create mode 100644 framework/Pgp/test/Horde/Pgp/MimeTest.php
http://github.com/horde/horde/commit/57101525db3d0bd6b9ab4d4553400fb61d00a4fc
-----------------------------------------------------------------------
commit a38209407f67274a5ff9f76bfa9fb6f59bef8678
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Apr 15 23:14:25 2015 -0600
Try to support more inputs to encrypt/sign
framework/Pgp/lib/Horde/Pgp/Backend/Openpgp.php | 64 +++++++++++------------
1 files changed, 30 insertions(+), 34 deletions(-)
http://github.com/horde/horde/commit/a38209407f67274a5ff9f76bfa9fb6f59bef8678
-----------------------------------------------------------------------
commit b6672b4bf57ab449e46181e896109326bc749482
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Apr 15 23:37:52 2015 -0600
Add support for encrypt and sign/encrypt MIME parts
framework/Pgp/lib/Horde/Pgp/Mime.php | 134 +++++++++++++++++------------
framework/Pgp/test/Horde/Pgp/MimeTest.php | 102 ++++++++++++++++++++--
2 files changed, 173 insertions(+), 63 deletions(-)
http://github.com/horde/horde/commit/b6672b4bf57ab449e46181e896109326bc749482
-----------------------------------------------------------------------
commit 74e58e942f64b510ba5dca81d3a448a61786a387
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Apr 15 23:47:48 2015 -0600
Allow signing hashes to be configurable
framework/Pgp/lib/Horde/Pgp.php | 39 ++++++++++++++++++++---
framework/Pgp/lib/Horde/Pgp/Backend.php | 4 ++-
framework/Pgp/lib/Horde/Pgp/Backend/Openpgp.php | 18 ++++++----
3 files changed, 48 insertions(+), 13 deletions(-)
http://github.com/horde/horde/commit/74e58e942f64b510ba5dca81d3a448a61786a387
-----------------------------------------------------------------------
commit 73b6b48e903b0222fedd075b7d53f576379b6c98
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 16 01:22:36 2015 -0600
Allow generate key hash to be configurable
framework/Pgp/lib/Horde/Pgp.php | 2 ++
framework/Pgp/lib/Horde/Pgp/Backend.php | 1 +
framework/Pgp/lib/Horde/Pgp/Backend/Openpgp.php | 12 ++++++++----
3 files changed, 11 insertions(+), 4 deletions(-)
http://github.com/horde/horde/commit/73b6b48e903b0222fedd075b7d53f576379b6c98
-----------------------------------------------------------------------
commit 8e18490406b9c7ba60fbf57c01c27ba9759b3b9d
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Apr 16 01:38:58 2015 -0600
Upstream fix: Add support for Blowfish and Twofish ciphers
framework/Pgp/bundle/CHANGED | 2 +
.../vendor/singpolyma/openpgp-php/lib/openpgp_crypt_symmetric.php | 12 +++++
2 files changed, 14 insertions(+), 0 deletions(-)
http://github.com/horde/horde/commit/8e18490406b9c7ba60fbf57c01c27ba9759b3b9d
More information about the commits
mailing list