summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorKlotz, Tobias <tobias.klotz@draeger.com>2019-02-19 13:34:32 +0100
committerBernd Edlinger <bernd.edlinger@hotmail.de>2019-05-02 23:32:44 +0200
commit61783db5b5c4c5edbdb47d6a7d0393782e72685d (patch)
treeb6f53e7b39c190134412a483c56a83bdf016ccf3 /apps
parent42151b8edb112d23d81f6e0d6606d98797771b4b (diff)
Use vxRandLib for VxWorks7
Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/8023)
Diffstat (limited to 'apps')
-rw-r--r--apps/rsautl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/rsautl.c b/apps/rsautl.c
index df90c01ea9..6939e42a4d 100644
--- a/apps/rsautl.c
+++ b/apps/rsautl.c
@@ -31,7 +31,7 @@ NON_EMPTY_TRANSLATION_UNIT
typedef enum OPTION_choice {
OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
OPT_ENGINE, OPT_IN, OPT_OUT, OPT_ASN1PARSE, OPT_HEXDUMP,
- OPT_RAW, OPT_OAEP, OPT_SSL, OPT_PKCS, OPT_X931,
+ OPT_RSA_RAW, OPT_OAEP, OPT_SSL, OPT_PKCS, OPT_X931,
OPT_SIGN, OPT_VERIFY, OPT_REV, OPT_ENCRYPT, OPT_DECRYPT,
OPT_PUBIN, OPT_CERTIN, OPT_INKEY, OPT_PASSIN, OPT_KEYFORM,
OPT_R_ENUM
@@ -46,7 +46,7 @@ const OPTIONS rsautl_options[] = {
{"pubin", OPT_PUBIN, '-', "Input is an RSA public"},
{"certin", OPT_CERTIN, '-', "Input is a cert carrying an RSA public key"},
{"ssl", OPT_SSL, '-', "Use SSL v2 padding"},
- {"raw", OPT_RAW, '-', "Use no padding"},
+ {"raw", OPT_RSA_RAW, '-', "Use no padding"},
{"pkcs", OPT_PKCS, '-', "Use PKCS#1 v1.5 padding (default)"},
{"oaep", OPT_OAEP, '-', "Use PKCS#1 OAEP"},
{"sign", OPT_SIGN, '-', "Sign with private key"},
@@ -112,7 +112,7 @@ int rsautl_main(int argc, char **argv)
case OPT_HEXDUMP:
hexdump = 1;
break;
- case OPT_RAW:
+ case OPT_RSA_RAW:
pad = RSA_NO_PADDING;
break;
case OPT_OAEP: