=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/rsautl.c,v retrieving revision 1.22 retrieving revision 1.23 diff -c -r1.22 -r1.23 *** src/usr.bin/openssl/rsautl.c 2023/04/09 18:33:26 1.22 --- src/usr.bin/openssl/rsautl.c 2023/05/05 18:01:27 1.23 *************** *** 1,4 **** ! /* $OpenBSD: rsautl.c,v 1.22 2023/04/09 18:33:26 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2000. */ --- 1,4 ---- ! /* $OpenBSD: rsautl.c,v 1.23 2023/05/05 18:01:27 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2000. */ *************** *** 206,211 **** --- 206,218 ---- .value = RSA_VERIFY, .opt.value = &cfg.rsa_mode, }, + { + .name = "x931", + .desc = "Use ANSI X9.31 padding", + .type = OPTION_VALUE, + .value = RSA_X931_PADDING, + .opt.value = &cfg.pad, + }, {NULL}, }; *************** *** 217,223 **** "usage: rsautl [-asn1parse] [-certin] [-decrypt] [-encrypt] " "[-hexdump]\n" " [-in file] [-inkey file] [-keyform der | pem]\n" ! " [-oaep | -pkcs | -raw] [-out file] [-passin arg]\n" " [-pubin] [-rev] [-sign] [-verify]\n\n"); options_usage(rsautl_options); --- 224,230 ---- "usage: rsautl [-asn1parse] [-certin] [-decrypt] [-encrypt] " "[-hexdump]\n" " [-in file] [-inkey file] [-keyform der | pem]\n" ! " [-oaep | -pkcs | -raw | -x931] [-out file] [-passin arg]\n" " [-pubin] [-rev] [-sign] [-verify]\n\n"); options_usage(rsautl_options);