Lines Matching defs:algo
1628 const char *algo = *argv;
1630 if (opt_found(algo, doit_choices, &i)) {
1634 if (strcmp(algo, "des") == 0) {
1638 if (strcmp(algo, "sha") == 0) {
1643 if (strcmp(algo, "openssl") == 0) /* just for compatibility */
1646 if (strncmp(algo, "rsa", 3) == 0) {
1647 if (algo[3] == '\0') {
1651 if (opt_found(algo, rsa_choices, &i)) {
1657 if (strncmp(algo, "ffdh", 4) == 0) {
1658 if (algo[4] == '\0') {
1662 if (opt_found(algo, ffdh_choices, &i)) {
1668 if (strncmp(algo, "dsa", 3) == 0) {
1669 if (algo[3] == '\0') {
1673 if (opt_found(algo, dsa_choices, &i)) {
1678 if (strcmp(algo, "aes") == 0) {
1682 if (strcmp(algo, "camellia") == 0) {
1686 if (strncmp(algo, "ecdsa", 5) == 0) {
1687 if (algo[5] == '\0') {
1691 if (opt_found(algo, ecdsa_choices, &i)) {
1696 if (strncmp(algo, "ecdh", 4) == 0) {
1697 if (algo[4] == '\0') {
1701 if (opt_found(algo, ecdh_choices, &i)) {
1706 if (strcmp(algo, "eddsa") == 0) {
1710 if (opt_found(algo, eddsa_choices, &i)) {
1715 if (strcmp(algo, "sm2") == 0) {
1719 if (opt_found(algo, sm2_choices, &i)) {
1724 BIO_printf(bio_err, "%s: Unknown algorithm %s\n", prog, algo);