scmno****@osdn*****
scmno****@osdn*****
2017年 12月 18日 (月) 20:06:13 JST
Revision: 7007 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/7007 Author: doda Date: 2017-12-18 20:06:13 +0900 (Mon, 18 Dec 2017) Log Message: ----------- MAC 種別として Implicit を追加 Ticket: #37741 取りあえず ssh.h に Implicit を追加 Ticket Links: ------------ http://sourceforge.jp/projects/ttssh2/tracker/detail/37741 Modified Paths: -------------- trunk/ttssh2/ttxssh/ssh.h -------------- next part -------------- Modified: trunk/ttssh2/ttxssh/ssh.h =================================================================== --- trunk/ttssh2/ttxssh/ssh.h 2017-12-18 11:06:09 UTC (rev 7006) +++ trunk/ttssh2/ttxssh/ssh.h 2017-12-18 11:06:13 UTC (rev 7007) @@ -477,6 +477,7 @@ HMAC_RIPEMD160_EtM, HMAC_SHA2_256_EtM, HMAC_SHA2_512_EtM, + HMAC_IMPLICIT, HMAC_UNKNOWN, HMAC_MAX = HMAC_UNKNOWN, } SSH2MacId; @@ -506,6 +507,7 @@ {HMAC_RIPEMD160_EtM,"hmac-****@opens*****",EVP_ripemd160, 0, 1}, {HMAC_SHA2_256_EtM, "hmac-****@opens*****", EVP_sha256, 0, 1}, {HMAC_SHA2_512_EtM, "hmac-****@opens*****", EVP_sha512, 0, 1}, + {HMAC_IMPLICIT, "<implicit>", EVP_md_null, 0, 0}, // for AEAD cipher {HMAC_NONE, NULL, NULL, 0, 0}, };