diff options
author | Olaf Conradi <olaf@conradi.org> | 2013-09-24 21:04:01 +0200 |
---|---|---|
committer | Olaf Conradi <olaf@conradi.org> | 2013-09-24 21:04:01 +0200 |
commit | 66d2fe22896026dd1f0768e9d898e5e9b6a8a231 (patch) | |
tree | 42d9b5cc7eeb0ff3f8e9fe54c1f1f507075b0ccd /mod/post.php | |
parent | e9a51797a273b979901b5958cc26acf9ad02011d (diff) | |
download | volse-hubzilla-66d2fe22896026dd1f0768e9d898e5e9b6a8a231.tar.gz volse-hubzilla-66d2fe22896026dd1f0768e9d898e5e9b6a8a231.tar.bz2 volse-hubzilla-66d2fe22896026dd1f0768e9d898e5e9b6a8a231.zip |
Fix name of Bleichenbacher
Diffstat (limited to 'mod/post.php')
-rw-r--r-- | mod/post.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/post.php b/mod/post.php index 0e1884d85..92d810356 100644 --- a/mod/post.php +++ b/mod/post.php @@ -175,7 +175,7 @@ function post_post(&$a) { $data = aes_unencapsulate($data,get_config('system','prvkey')); logger('mod_zot: decrypt1: ' . $data, LOGGER_DATA); -// susceptible to Bleichenberger attack +// susceptible to Bleichenbacher's attack // if(! $data) { // $ret['message'] = 'Decryption failed.'; // json_return_and_die($ret); @@ -187,7 +187,7 @@ function post_post(&$a) { if(! $data) { - // possible Bleichenberger attack, just treat it as a + // possible Bleichenbacher's attack, just treat it as a // message we have no handler for. It should fail a bit // further along with "no hub". Our public key is public // knowledge. There's no reason why anybody should get the |