[Ttssh2-commit] [8256] 擬似テストで修正確認を実施。

Back to archive index
scmno****@osdn***** scmno****@osdn*****
2019年 10月 5日 (土) 17:12:22 JST


Revision: 8256
          https://osdn.net/projects/ttssh2/scm/svn/commits/8256
Author:   yutakapon
Date:     2019-10-05 17:12:22 +0900 (Sat, 05 Oct 2019)
Log Message:
-----------
擬似テストで修正確認を実施。
チケット #36876 

Ticket Links:
------------
    https://osdn.net/projects/ttssh2/tracker/detail/36876

Modified Paths:
--------------
    branches/openssl_1_1_1_v2/ttssh2/ttxssh/cipher-ctr.c

-------------- next part --------------
Modified: branches/openssl_1_1_1_v2/ttssh2/ttxssh/cipher-ctr.c
===================================================================
--- branches/openssl_1_1_1_v2/ttssh2/ttxssh/cipher-ctr.c	2019-10-02 15:22:56 UTC (rev 8255)
+++ branches/openssl_1_1_1_v2/ttssh2/ttxssh/cipher-ctr.c	2019-10-05 08:12:22 UTC (rev 8256)
@@ -306,27 +306,8 @@
 const EVP_CIPHER *
 evp_bf_ctr(void)
 {
-	/*** TODO: OPENSSL1.1.1 \x83e\x83X\x83g\x8A\xAE\x97\xB9\x8C\xE3\x82ɍ폜\x82\xB7\x82\xE9 ***/
-#if 0
-	static EVP_CIPHER blowfish_ctr;
-
-	memset(&blowfish_ctr, 0, sizeof(EVP_CIPHER));
-	blowfish_ctr.nid = NID_undef;
-	blowfish_ctr.block_size = BF_BLOCK;
-	blowfish_ctr.iv_len = BF_BLOCK;
-	blowfish_ctr.key_len = 16;
-	blowfish_ctr.init = ssh_bf_ctr_init;
-	blowfish_ctr.cleanup = ssh_bf_ctr_cleanup;
-	blowfish_ctr.do_cipher = ssh_bf_ctr;
-#ifndef SSH_OLD_EVP
-	blowfish_ctr.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH | EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV;
-#endif
-	return (&blowfish_ctr);
-#endif
-
 	static EVP_CIPHER *p = NULL;
 
-	/********* OPENSSL1.1.1 NOTEST *********/
 	if (p == NULL) {
 		p = EVP_CIPHER_meth_new(NID_undef, /*block_size*/BF_BLOCK, /*key_len*/16);
 		/*** TODO: OPENSSL1.1.1 ERROR CHECK(ticket#39335\x82ŏ\x88\x92u\x97\\x92\xE8) ***/
@@ -419,25 +400,6 @@
 const EVP_CIPHER *
 evp_cast5_ctr(void)
 {
-	/*** TODO: OPENSSL1.1.1 \x83e\x83X\x83g\x8A\xAE\x97\xB9\x8C\xE3\x82ɍ폜\x82\xB7\x82\xE9 ***/
-#if 0
-	static EVP_CIPHER cast5_ctr;
-
-	memset(&cast5_ctr, 0, sizeof(EVP_CIPHER));
-	cast5_ctr.nid = NID_undef;
-	cast5_ctr.block_size = CAST_BLOCK;
-	cast5_ctr.iv_len = CAST_BLOCK;
-	cast5_ctr.key_len = 16;
-	cast5_ctr.init = ssh_cast5_ctr_init;
-	cast5_ctr.cleanup = ssh_cast5_ctr_cleanup;
-	cast5_ctr.do_cipher = ssh_cast5_ctr;
-#ifndef SSH_OLD_EVP
-	cast5_ctr.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH | EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV;
-#endif
-	return (&cast5_ctr);
-#endif
-
-	/********* OPENSSL1.1.1 NOTEST *********/
 	static EVP_CIPHER *p = NULL;
 
 	if (p == NULL) {


Ttssh2-commit メーリングリストの案内
Back to archive index