remove java from config

This commit is contained in:
Zhi Guan
2017-11-25 16:43:19 +08:00
parent 2458fcb879
commit ed7bf9302f
23 changed files with 5432 additions and 5486 deletions

View File

@@ -312,7 +312,7 @@ static int sms4_ccm_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
}
}
#define SMS4_CCM_BLOCK_SIZE 1
#define SMS4_CCM_BLOCK_SIZE 16
#define SMS4_CCM_IV_LENGTH 12
#define SMS4_CCM_FLAGS (EVP_CIPH_FLAG_DEFAULT_ASN1 \
@@ -335,6 +335,7 @@ static const EVP_CIPHER sms4_ccm = {
};
const EVP_CIPHER *EVP_sms4_ccm(void) {
return NULL;
return &sms4_ccm;
}
#endif /* OPENSSL_NO_SMS4 */