summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-01-19 19:28:03 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-01-19 19:28:03 +0000
commit2e155fde390cd0231f582c756a235dc2a8ee906d (patch)
tree1f79a263702f93e59e4a4d4ba2c2a09bb5dd953c /engines
parent9a8c8cb22ed50d830bf79640a5ee5d6b8fa0e110 (diff)
PR: 2141
Submitted by: "NARUSE, Yui" <naruse@airemix.jp> Remove non-ASCII comment which causes compilation errors on some versions of VC++.
Diffstat (limited to 'engines')
-rw-r--r--engines/ccgost/gost_crypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/ccgost/gost_crypt.c b/engines/ccgost/gost_crypt.c
index 9c9fed5a7b..eb11f0e328 100644
--- a/engines/ccgost/gost_crypt.c
+++ b/engines/ccgost/gost_crypt.c
@@ -34,7 +34,7 @@ EVP_CIPHER cipher_gost =
NID_id_Gost28147_89,
1,/*block_size*/
32,/*key_size*/
- 8,/*iv_len - синхропосылка*/
+ 8,/*iv_len */
EVP_CIPH_CFB_MODE| EVP_CIPH_NO_PADDING |
EVP_CIPH_CUSTOM_IV| EVP_CIPH_RAND_KEY | EVP_CIPH_ALWAYS_CALL_INIT,
gost_cipher_init,
@@ -52,7 +52,7 @@ EVP_CIPHER cipher_gost_cpacnt =
NID_gost89_cnt,
1,/*block_size*/
32,/*key_size*/
- 8,/*iv_len - синхропосылка*/
+ 8,/*iv_len */
EVP_CIPH_OFB_MODE| EVP_CIPH_NO_PADDING |
EVP_CIPH_CUSTOM_IV| EVP_CIPH_RAND_KEY | EVP_CIPH_ALWAYS_CALL_INIT,
gost_cipher_init_cpa,