EVP_CIPHER-IDEA - The IDEA EVP_CIPHER implementations
| Use Case | Command | Description |
|---|---|---|
| đ Encrypt file with IDEA-CBC (CLI) | openssl enc -idea-cbc -in file -out file.enc -K hexkey -iv hexiv | Encrypt file using IDEA-CBC with given key and IV |
| đĻ Fetch IDEA-CBC cipher in EVP | EVP_CIPHER *c = EVP_CIPHER_fetch(NULL, "IDEA-CBC", NULL); | Obtain IDEA-CBC cipher object for EVP operations |
| âī¸ Initialize encryption context | EVP_EncryptInit_ex(ctx, cipher, NULL, key, iv); | Start IDEA-CBC encryption using the fetched cipher |
| đ List available IDEA modes | openssl list -cipher-algorithms | grep IDEA | Verify which IDEA variants are loaded from the legacy provider |
Support for IDEA symmetric encryption using the EVP_CIPHER API.
The following algorithms are available in the legacy provider:
IDEA-ECBIDEA-CBCIDEA-OFB or IDEA-OFB64IDEA-CFB or IDEA-CFB64This implementation supports the parameters described in "PARAMETERS" in EVP_EncryptInit(3).
provider-cipher(7), OSSL_PROVIDER-legacy(7)
Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <https://www.openssl.org/source/license.html>.
Generated by phpman v4.9.26-1-g511901d · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-07 01:57 @216.73.216.207
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format