diff options
author | Hans Nilsson <[email protected]> | 2016-08-29 17:20:37 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-08-29 17:20:37 +0200 |
commit | 3430829486d4c2a2af32214107ba39f9028d7aa8 (patch) | |
tree | 2e1f517647cef8487d10cb6d638521c19cd07d0a /lib | |
parent | 28baf1314b556bb592c24181f6967e1f324f44a7 (diff) | |
download | otp-3430829486d4c2a2af32214107ba39f9028d7aa8.tar.gz otp-3430829486d4c2a2af32214107ba39f9028d7aa8.tar.bz2 otp-3430829486d4c2a2af32214107ba39f9028d7aa8.zip |
ssh: reduce random padding to 15 bytes
This is to get rid of some warnings in Codenomicon/Defensics. It also speeds up the communications.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh/src/ssh.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh.hrl b/lib/ssh/src/ssh.hrl index 868f3a9181..4cd91177f6 100644 --- a/lib/ssh/src/ssh.hrl +++ b/lib/ssh/src/ssh.hrl @@ -127,7 +127,7 @@ recv_sequence = 0, keyex_key, keyex_info, - random_length_padding = 255, % From RFC 4253 section 6. + random_length_padding = 15, % From RFC 4253 section 6. %% User auth user, |