2016-05-18 02:18:30 +08:00
/*
2024-09-05 15:35:49 +08:00
* Copyright 1995 - 2024 The OpenSSL Project Authors . All Rights Reserved .
1998-12-21 18:52:47 +08:00
*
2018-12-06 20:00:26 +08:00
* Licensed under the Apache License 2.0 ( the " License " ) . You may not use
2016-05-18 02:18:30 +08:00
* 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
1998-12-21 18:52:47 +08:00
*/
# include <stdio.h>
# include <string.h>
# include <stdlib.h>
# include "apps.h"
2018-01-31 18:13:10 +08:00
# include "progs.h"
1999-04-24 06:13:45 +08:00
# include <openssl/bio.h>
# include <openssl/err.h>
# include <openssl/evp.h>
# include <openssl/objects.h>
# include <openssl/x509.h>
# include <openssl/pem.h>
2007-02-09 03:07:43 +08:00
# include <openssl/hmac.h>
2019-09-16 20:09:01 +08:00
# include <ctype.h>
1998-12-21 18:52:47 +08:00
# undef BUFSIZE
# define BUFSIZE 1024*8
2020-10-26 20:23:14 +08:00
int do_fp ( BIO * out , unsigned char * buf , BIO * bp , int sep , int binout , int xoflen ,
2007-05-18 00:19:17 +08:00
EVP_PKEY * key , unsigned char * sigin , int siglen ,
const char * sig_name , const char * md_name ,
2016-02-14 11:33:56 +08:00
const char * file ) ;
2019-09-16 20:09:01 +08:00
static void show_digests ( const OBJ_NAME * name , void * bio_ ) ;
struct doall_dgst_digests {
BIO * bio ;
int n ;
} ;
2000-02-11 17:47:18 +08:00
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
typedef enum OPTION_choice {
2021-05-01 21:29:00 +08:00
OPT_COMMON ,
OPT_LIST ,
2017-07-05 22:58:48 +08:00
OPT_C , OPT_R , OPT_OUT , OPT_SIGN , OPT_PASSIN , OPT_VERIFY ,
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
OPT_PRVERIFY , OPT_SIGNATURE , OPT_KEYFORM , OPT_ENGINE , OPT_ENGINE_IMPL ,
OPT_HEX , OPT_BINARY , OPT_DEBUG , OPT_FIPS_FINGERPRINT ,
2020-10-26 20:23:14 +08:00
OPT_HMAC , OPT_MAC , OPT_SIGOPT , OPT_MACOPT , OPT_XOFLEN ,
2017-07-05 22:58:48 +08:00
OPT_DIGEST ,
2020-02-25 12:29:30 +08:00
OPT_R_ENUM , OPT_PROV_ENUM
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
} OPTION_CHOICE ;
2016-03-13 21:07:50 +08:00
const OPTIONS dgst_options [ ] = {
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
{ OPT_HELP_STR , 1 , ' - ' , " Usage: %s [options] [file...] \n " } ,
2019-09-20 09:33:17 +08:00
2019-11-08 04:08:30 +08:00
OPT_SECTION ( " General " ) ,
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
{ " help " , OPT_HELP , ' - ' , " Display this summary " } ,
2019-09-16 20:09:01 +08:00
{ " list " , OPT_LIST , ' - ' , " List digests " } ,
2019-11-08 04:08:30 +08:00
# ifndef OPENSSL_NO_ENGINE
{ " engine " , OPT_ENGINE , ' s ' , " Use engine e, possibly a hardware device " } ,
{ " engine_impl " , OPT_ENGINE_IMPL , ' - ' ,
" Also use engine given by -engine for digest operations " } ,
# endif
{ " passin " , OPT_PASSIN , ' s ' , " Input file pass phrase source " } ,
OPT_SECTION ( " Output " ) ,
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
{ " c " , OPT_C , ' - ' , " Print the digest with separating colons " } ,
{ " r " , OPT_R , ' - ' , " Print the digest in coreutils format " } ,
{ " out " , OPT_OUT , ' > ' , " Output to filename rather than stdout " } ,
2020-05-06 19:51:50 +08:00
{ " keyform " , OPT_KEYFORM , ' f ' , " Key file format (ENGINE, other values ignored) " } ,
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
{ " hex " , OPT_HEX , ' - ' , " Print as hex dump " } ,
{ " binary " , OPT_BINARY , ' - ' , " Print in binary form " } ,
2022-06-22 13:21:13 +08:00
{ " xoflen " , OPT_XOFLEN , ' p ' , " Output length for XOF algorithms. To obtain the maximum security strength set this to 32 (or greater) for SHAKE128, and 64 (or greater) for SHAKE256 " } ,
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
{ " d " , OPT_DEBUG , ' - ' , " Print debug info " } ,
2016-02-08 12:14:12 +08:00
{ " debug " , OPT_DEBUG , ' - ' , " Print debug info " } ,
2019-11-08 04:08:30 +08:00
OPT_SECTION ( " Signing " ) ,
{ " sign " , OPT_SIGN , ' s ' , " Sign digest using private key " } ,
{ " verify " , OPT_VERIFY , ' s ' , " Verify a signature using public key " } ,
{ " prverify " , OPT_PRVERIFY , ' s ' , " Verify a signature using private key " } ,
{ " sigopt " , OPT_SIGOPT , ' s ' , " Signature parameter in n:v form " } ,
{ " signature " , OPT_SIGNATURE , ' < ' , " File with signature to verify " } ,
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
{ " hmac " , OPT_HMAC , ' s ' , " Create hashed MAC with key " } ,
2016-02-06 04:23:54 +08:00
{ " mac " , OPT_MAC , ' s ' , " Create MAC (not necessarily HMAC) " } ,
2015-10-12 16:44:15 +08:00
{ " macopt " , OPT_MACOPT , ' s ' , " MAC algorithm parameters in n:v form or key " } ,
2015-05-16 01:50:38 +08:00
{ " " , OPT_DIGEST , ' - ' , " Any supported digest " } ,
2019-11-08 04:08:30 +08:00
{ " fips-fingerprint " , OPT_FIPS_FINGERPRINT , ' - ' ,
" Compute HMAC with the key used in OpenSSL-FIPS fingerprint " } ,
2017-07-05 22:58:48 +08:00
OPT_R_OPTIONS ,
2020-02-25 12:29:30 +08:00
OPT_PROV_OPTIONS ,
2019-09-20 09:33:17 +08:00
OPT_PARAMETERS ( ) ,
{ " file " , 0 , 0 , " Files to digest (optional; default is stdin) " } ,
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
{ NULL }
} ;
int dgst_main ( int argc , char * * argv )
1998-12-21 18:52:47 +08:00
{
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
BIO * in = NULL , * inp , * bmd = NULL , * out = NULL ;
2010-03-05 21:28:21 +08:00
ENGINE * e = NULL , * impl = NULL ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
EVP_PKEY * sigkey = NULL ;
STACK_OF ( OPENSSL_STRING ) * sigopts = NULL , * macopts = NULL ;
char * hmac_key = NULL ;
2021-02-09 03:03:35 +08:00
char * mac_name = NULL , * digestname = NULL ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
char * passinarg = NULL , * passin = NULL ;
2021-02-18 05:15:27 +08:00
EVP_MD * md = NULL ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
const char * outfile = NULL , * keyfile = NULL , * prog = NULL ;
2017-07-05 22:58:48 +08:00
const char * sigfile = NULL ;
2019-03-29 14:11:57 +08:00
const char * md_name = NULL ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
OPTION_CHOICE o ;
2021-04-30 22:57:53 +08:00
int separator = 0 , debug = 0 , keyform = FORMAT_UNDEF , siglen = 0 ;
2020-06-09 16:21:58 +08:00
int i , ret = EXIT_FAILURE , out_bin = - 1 , want_pub = 0 , do_verify = 0 ;
2020-10-26 20:23:14 +08:00
int xoflen = 0 ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
unsigned char * buf = NULL , * sigbuf = NULL ;
2010-03-05 21:28:21 +08:00
int engine_impl = 0 ;
2019-09-16 20:09:01 +08:00
struct doall_dgst_digests dec ;
2015-01-22 11:40:55 +08:00
2015-05-01 05:48:31 +08:00
buf = app_malloc ( BUFSIZE , " I/O buffer " ) ;
2021-02-18 05:15:27 +08:00
md = ( EVP_MD * ) EVP_get_digestbyname ( argv [ 0 ] ) ;
2022-11-04 19:20:08 +08:00
if ( md ! = NULL )
digestname = argv [ 0 ] ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
2021-08-24 18:03:12 +08:00
opt_set_unknown_name ( " digest " ) ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
prog = opt_init ( argc , argv , dgst_options ) ;
while ( ( o = opt_next ( ) ) ! = OPT_EOF ) {
switch ( o ) {
case OPT_EOF :
case OPT_ERR :
opthelp :
BIO_printf ( bio_err , " %s: Use -help for summary. \n " , prog ) ;
goto end ;
case OPT_HELP :
opt_help ( dgst_options ) ;
2020-06-09 16:21:58 +08:00
ret = EXIT_SUCCESS ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
goto end ;
2019-09-16 20:09:01 +08:00
case OPT_LIST :
BIO_printf ( bio_out , " Supported digests: \n " ) ;
dec . bio = bio_out ;
dec . n = 0 ;
OBJ_NAME_do_all_sorted ( OBJ_NAME_TYPE_MD_METH ,
show_digests , & dec ) ;
BIO_printf ( bio_out , " \n " ) ;
2020-06-09 16:21:58 +08:00
ret = EXIT_SUCCESS ;
2019-09-16 20:09:01 +08:00
goto end ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
case OPT_C :
1998-12-21 18:52:47 +08:00
separator = 1 ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
break ;
case OPT_R :
2009-10-16 01:13:54 +08:00
separator = 2 ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
break ;
2017-07-05 22:58:48 +08:00
case OPT_R_CASES :
if ( ! opt_rand ( o ) )
goto end ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
break ;
case OPT_OUT :
outfile = opt_arg ( ) ;
break ;
case OPT_SIGN :
keyfile = opt_arg ( ) ;
break ;
case OPT_PASSIN :
passinarg = opt_arg ( ) ;
break ;
case OPT_VERIFY :
keyfile = opt_arg ( ) ;
want_pub = do_verify = 1 ;
break ;
case OPT_PRVERIFY :
keyfile = opt_arg ( ) ;
2000-08-31 00:14:29 +08:00
do_verify = 1 ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
break ;
case OPT_SIGNATURE :
sigfile = opt_arg ( ) ;
break ;
case OPT_KEYFORM :
if ( ! opt_format ( opt_arg ( ) , OPT_FMT_ANY , & keyform ) )
goto opthelp ;
break ;
case OPT_ENGINE :
2015-04-26 03:41:29 +08:00
e = setup_engine ( opt_arg ( ) , 0 ) ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
break ;
case OPT_ENGINE_IMPL :
2010-03-05 21:28:21 +08:00
engine_impl = 1 ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
break ;
case OPT_HEX :
2000-08-31 00:14:29 +08:00
out_bin = 0 ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
break ;
case OPT_BINARY :
2000-08-31 00:14:29 +08:00
out_bin = 1 ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
break ;
2020-10-26 20:23:14 +08:00
case OPT_XOFLEN :
xoflen = atoi ( opt_arg ( ) ) ;
break ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
case OPT_DEBUG :
1998-12-21 18:52:47 +08:00
debug = 1 ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
break ;
case OPT_FIPS_FINGERPRINT :
2011-04-07 07:40:46 +08:00
hmac_key = " etaonrishdlcupfm " ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
break ;
case OPT_HMAC :
hmac_key = opt_arg ( ) ;
break ;
case OPT_MAC :
mac_name = opt_arg ( ) ;
break ;
case OPT_SIGOPT :
2007-04-08 20:47:18 +08:00
if ( ! sigopts )
2009-07-28 05:10:00 +08:00
sigopts = sk_OPENSSL_STRING_new_null ( ) ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
if ( ! sigopts | | ! sk_OPENSSL_STRING_push ( sigopts , opt_arg ( ) ) )
goto opthelp ;
break ;
case OPT_MACOPT :
2007-04-12 01:20:40 +08:00
if ( ! macopts )
2009-07-28 05:10:00 +08:00
macopts = sk_OPENSSL_STRING_new_null ( ) ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
if ( ! macopts | | ! sk_OPENSSL_STRING_push ( macopts , opt_arg ( ) ) )
goto opthelp ;
break ;
case OPT_DIGEST :
2021-02-09 03:03:35 +08:00
digestname = opt_unknown ( ) ;
1998-12-21 18:52:47 +08:00
break ;
2020-02-25 12:29:30 +08:00
case OPT_PROV_CASES :
if ( ! opt_provider ( o ) )
goto end ;
break ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
}
1998-12-21 18:52:47 +08:00
}
2020-11-29 05:12:58 +08:00
/* Remaining args are files to digest. */
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
argc = opt_num_rest ( ) ;
argv = opt_rest ( ) ;
2016-09-03 05:34:31 +08:00
if ( keyfile ! = NULL & & argc > 1 ) {
BIO_printf ( bio_err , " %s: Can only sign or verify one file. \n " , prog ) ;
goto end ;
}
2021-04-03 18:53:51 +08:00
if ( ! app_RAND_load ( ) )
goto end ;
2021-02-09 03:03:35 +08:00
if ( digestname ! = NULL ) {
if ( ! opt_md ( digestname , & md ) )
goto opthelp ;
}
2015-01-22 11:40:55 +08:00
2017-06-13 01:24:02 +08:00
if ( do_verify & & sigfile = = NULL ) {
2000-08-31 00:14:29 +08:00
BIO_printf ( bio_err ,
" No signature to verify: use the -signature option \n " ) ;
goto end ;
}
2010-03-05 21:28:21 +08:00
if ( engine_impl )
impl = e ;
1998-12-21 18:52:47 +08:00
in = BIO_new ( BIO_s_file ( ) ) ;
bmd = BIO_new ( BIO_f_md ( ) ) ;
2020-06-09 16:21:58 +08:00
if ( in = = NULL | | bmd = = NULL )
2015-03-12 19:25:03 +08:00
goto end ;
1998-12-21 18:52:47 +08:00
if ( debug ) {
2021-05-25 00:15:57 +08:00
BIO_set_callback_ex ( in , BIO_debug_callback_ex ) ;
1998-12-21 18:52:47 +08:00
/* needed for windows 3.1 */
2006-11-30 04:54:57 +08:00
BIO_set_callback_arg ( in , ( char * ) bio_err ) ;
1998-12-21 18:52:47 +08:00
}
2015-01-22 11:40:55 +08:00
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
if ( ! app_passwd ( passinarg , NULL , & passin , NULL ) ) {
2004-12-03 20:26:56 +08:00
BIO_printf ( bio_err , " Error getting password \n " ) ;
goto end ;
}
2015-01-22 11:40:55 +08:00
2000-08-31 00:14:29 +08:00
if ( out_bin = = - 1 ) {
2017-06-13 01:24:02 +08:00
if ( keyfile ! = NULL )
2007-05-21 23:53:30 +08:00
out_bin = 1 ;
else
out_bin = 0 ;
2000-08-31 00:14:29 +08:00
}
2015-01-22 11:40:55 +08:00
2015-09-04 18:49:06 +08:00
out = bio_open_default ( outfile , ' w ' , out_bin ? FORMAT_BINARY : FORMAT_TEXT ) ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
if ( out = = NULL )
2000-08-31 00:14:29 +08:00
goto end ;
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
2017-06-13 01:24:02 +08:00
if ( ( ! ( mac_name = = NULL ) + ! ( keyfile = = NULL ) + ! ( hmac_key = = NULL ) ) > 1 ) {
2020-06-09 16:21:58 +08:00
BIO_printf ( bio_err , " MAC and signing key cannot both be specified \n " ) ;
2007-04-12 01:20:40 +08:00
goto end ;
}
2015-01-22 11:40:55 +08:00
2017-06-13 01:24:02 +08:00
if ( keyfile ! = NULL ) {
2018-04-05 20:03:37 +08:00
int type ;
2001-05-30 23:29:28 +08:00
if ( want_pub )
2020-09-17 07:39:00 +08:00
sigkey = load_pubkey ( keyfile , keyform , 0 , NULL , e , " public key " ) ;
2000-10-29 06:40:40 +08:00
else
2020-09-17 07:39:00 +08:00
sigkey = load_key ( keyfile , keyform , 0 , passin , e , " private key " ) ;
2017-06-13 01:24:02 +08:00
if ( sigkey = = NULL ) {
2001-05-30 23:29:28 +08:00
/*
* load_ [ pub ] key ( ) has already printed an appropriate message
*/
2000-08-31 00:14:29 +08:00
goto end ;
}
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
type = EVP_PKEY_get_id ( sigkey ) ;
2018-04-05 20:03:37 +08:00
if ( type = = EVP_PKEY_ED25519 | | type = = EVP_PKEY_ED448 ) {
/*
* We implement PureEdDSA for these which doesn ' t have a separate
* digest , and only supports one shot .
*/
BIO_printf ( bio_err , " Key type not supported for this operation \n " ) ;
goto end ;
}
2015-01-22 11:40:55 +08:00
}
2017-06-13 01:24:02 +08:00
if ( mac_name ! = NULL ) {
2007-04-12 01:20:40 +08:00
EVP_PKEY_CTX * mac_ctx = NULL ;
2020-06-09 16:21:58 +08:00
2020-06-16 11:04:57 +08:00
if ( ! init_gen_str ( & mac_ctx , mac_name , impl , 0 , NULL , NULL ) )
2020-06-09 16:21:58 +08:00
goto end ;
2017-06-13 01:24:02 +08:00
if ( macopts ! = NULL ) {
2009-07-28 05:10:00 +08:00
for ( i = 0 ; i < sk_OPENSSL_STRING_num ( macopts ) ; i + + ) {
2020-06-09 16:21:58 +08:00
char * macopt = sk_OPENSSL_STRING_value ( macopts , i ) ;
2007-04-12 01:20:40 +08:00
if ( pkey_ctrl_string ( mac_ctx , macopt ) < = 0 ) {
2020-06-09 16:21:58 +08:00
EVP_PKEY_CTX_free ( mac_ctx ) ;
BIO_printf ( bio_err , " MAC parameter error \" %s \" \n " , macopt ) ;
goto end ;
2007-04-12 01:20:40 +08:00
}
}
}
2020-06-09 16:21:58 +08:00
sigkey = app_keygen ( mac_ctx , mac_name , 0 , 0 /* not verbose */ ) ;
/* Verbose output would make external-tests gost-engine fail */
2015-03-28 22:54:15 +08:00
EVP_PKEY_CTX_free ( mac_ctx ) ;
2023-09-11 12:38:31 +08:00
if ( sigkey = = NULL )
goto end ;
2007-04-12 01:20:40 +08:00
}
2015-01-22 11:40:55 +08:00
2017-06-13 01:24:02 +08:00
if ( hmac_key ! = NULL ) {
2022-07-04 22:15:07 +08:00
if ( md = = NULL ) {
2021-05-20 16:59:07 +08:00
md = ( EVP_MD * ) EVP_sha256 ( ) ;
2022-07-04 22:15:07 +08:00
digestname = SN_sha256 ;
}
2018-03-15 20:19:16 +08:00
sigkey = EVP_PKEY_new_raw_private_key ( EVP_PKEY_HMAC , impl ,
2020-09-10 21:46:41 +08:00
( unsigned char * ) hmac_key ,
strlen ( hmac_key ) ) ;
2017-06-13 01:24:02 +08:00
if ( sigkey = = NULL )
2007-04-12 01:20:40 +08:00
goto end ;
}
2015-01-22 11:40:55 +08:00
2017-06-13 01:24:02 +08:00
if ( sigkey ! = NULL ) {
2007-04-08 20:47:18 +08:00
EVP_MD_CTX * mctx = NULL ;
EVP_PKEY_CTX * pctx = NULL ;
2020-06-09 16:21:58 +08:00
int res ;
2021-10-07 11:50:59 +08:00
if ( BIO_get_md_ctx ( bmd , & mctx ) < = 0 ) {
2007-04-08 20:47:18 +08:00
BIO_printf ( bio_err , " Error getting context \n " ) ;
goto end ;
}
2007-05-17 20:35:32 +08:00
if ( do_verify )
2022-07-04 22:15:07 +08:00
if ( impl = = NULL )
res = EVP_DigestVerifyInit_ex ( mctx , & pctx , digestname ,
app_get0_libctx ( ) ,
app_get0_propq ( ) , sigkey , NULL ) ;
else
res = EVP_DigestVerifyInit ( mctx , & pctx , md , impl , sigkey ) ;
2007-05-17 20:35:32 +08:00
else
2022-07-04 22:15:07 +08:00
if ( impl = = NULL )
res = EVP_DigestSignInit_ex ( mctx , & pctx , digestname ,
app_get0_libctx ( ) ,
app_get0_propq ( ) , sigkey , NULL ) ;
else
res = EVP_DigestSignInit ( mctx , & pctx , md , impl , sigkey ) ;
2020-06-09 16:21:58 +08:00
if ( res = = 0 ) {
2007-04-08 20:47:18 +08:00
BIO_printf ( bio_err , " Error setting context \n " ) ;
goto end ;
}
2017-06-13 01:24:02 +08:00
if ( sigopts ! = NULL ) {
2009-07-28 05:10:00 +08:00
for ( i = 0 ; i < sk_OPENSSL_STRING_num ( sigopts ) ; i + + ) {
2020-06-09 16:21:58 +08:00
char * sigopt = sk_OPENSSL_STRING_value ( sigopts , i ) ;
2007-04-08 20:47:18 +08:00
if ( pkey_ctrl_string ( pctx , sigopt ) < = 0 ) {
2020-06-09 16:21:58 +08:00
BIO_printf ( bio_err , " Signature parameter error \" %s \" \n " ,
sigopt ) ;
2007-04-08 20:47:18 +08:00
goto end ;
2015-01-22 11:40:55 +08:00
}
}
}
2007-04-08 20:47:18 +08:00
}
/* we use md as a filter, reading from 'in' */
2007-05-17 20:55:03 +08:00
else {
2010-03-05 21:28:21 +08:00
EVP_MD_CTX * mctx = NULL ;
2021-10-07 11:50:59 +08:00
if ( BIO_get_md_ctx ( bmd , & mctx ) < = 0 ) {
2010-03-05 21:28:21 +08:00
BIO_printf ( bio_err , " Error getting context \n " ) ;
goto end ;
}
2007-05-17 20:55:03 +08:00
if ( md = = NULL )
2021-02-18 05:15:27 +08:00
md = ( EVP_MD * ) EVP_sha256 ( ) ;
2010-03-05 21:28:21 +08:00
if ( ! EVP_DigestInit_ex ( mctx , md , impl ) ) {
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
BIO_printf ( bio_err , " Error setting digest \n " ) ;
2007-05-17 20:55:03 +08:00
goto end ;
2015-01-22 11:40:55 +08:00
}
2007-05-17 20:55:03 +08:00
}
2015-01-22 11:40:55 +08:00
2017-06-13 01:24:02 +08:00
if ( sigfile ! = NULL & & sigkey ! = NULL ) {
Big apps cleanup (option-parsing, etc)
This is merges the old "rsalz-monolith" branch over to master. The biggest
change is that option parsing switch from cascasding 'else if strcmp("-foo")'
to a utility routine and somethin akin to getopt. Also, an error in the
command line no longer prints the full summary; use -help (or --help :)
for that. There have been many other changes and code-cleanup, see
bullet list below.
Special thanks to Matt for the long and detailed code review.
TEMPORARY:
For now, comment out CRYPTO_mem_leaks() at end of main
Tickets closed:
RT3515: Use 3DES in pkcs12 if built with no-rc2
RT1766: s_client -reconnect and -starttls broke
RT2932: Catch write errors
RT2604: port should be 'unsigned short'
RT2983: total_bytes undeclared #ifdef RENEG
RT1523: Add -nocert to fix output in x509 app
RT3508: Remove unused variable introduced by b09eb24
RT3511: doc fix; req default serial is random
RT1325,2973: Add more extensions to c_rehash
RT2119,3407: Updated to dgst.pod
RT2379: Additional typo fix
RT2693: Extra include of string.h
RT2880: HFS is case-insensitive filenames
RT3246: req command prints version number wrong
Other changes; incompatibilities marked with *:
Add SCSV support
Add -misalign to speed command
Make dhparam, dsaparam, ecparam, x509 output C in proper style
Make some internal ocsp.c functions void
Only display cert usages with -help in verify
Use global bio_err, remove "BIO*err" parameter from functions
For filenames, - always means stdin (or stdout as appropriate)
Add aliases for -des/aes "wrap" ciphers.
*Remove support for IISSGC (server gated crypto)
*The undocumented OCSP -header flag is now "-header name=value"
*Documented the OCSP -header flag
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-04-25 03:26:15 +08:00
BIO * sigbio = BIO_new_file ( sigfile , " rb " ) ;
2020-06-09 16:21:58 +08:00
2017-06-13 01:24:02 +08:00
if ( sigbio = = NULL ) {
2000-08-31 00:14:29 +08:00
BIO_printf ( bio_err , " Error opening signature file %s \n " , sigfile ) ;
goto end ;
}
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
siglen = EVP_PKEY_get_size ( sigkey ) ;
2015-05-01 05:48:31 +08:00
sigbuf = app_malloc ( siglen , " signature buffer " ) ;
2000-08-31 00:14:29 +08:00
siglen = BIO_read ( sigbio , sigbuf , siglen ) ;
BIO_free ( sigbio ) ;
2000-09-20 01:51:11 +08:00
if ( siglen < = 0 ) {
2000-08-31 00:14:29 +08:00
BIO_printf ( bio_err , " Error reading signature file %s \n " , sigfile ) ;
goto end ;
2015-01-22 11:40:55 +08:00
}
2000-08-31 00:14:29 +08:00
}
1998-12-21 18:52:47 +08:00
inp = BIO_push ( bmd , in ) ;
2015-01-22 11:40:55 +08:00
2007-05-17 20:55:03 +08:00
if ( md = = NULL ) {
EVP_MD_CTX * tctx ;
2021-02-18 05:15:27 +08:00
2007-05-17 20:55:03 +08:00
BIO_get_md_ctx ( bmd , & tctx ) ;
2021-02-18 05:15:27 +08:00
md = EVP_MD_CTX_get1_md ( tctx ) ;
2007-05-17 20:55:03 +08:00
}
2019-03-29 14:11:57 +08:00
if ( md ! = NULL )
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
md_name = EVP_MD_get0_name ( md ) ;
2015-01-22 11:40:55 +08:00
2020-10-26 20:23:14 +08:00
if ( xoflen > 0 ) {
2024-08-26 09:14:55 +08:00
if ( ! EVP_MD_xof ( md ) ) {
2020-10-26 20:23:14 +08:00
BIO_printf ( bio_err , " Length can only be specified for XOF \n " ) ;
goto end ;
}
2022-06-22 13:21:13 +08:00
/*
* Signing using XOF is not supported by any algorithms currently since
* each algorithm only calls EVP_DigestFinal_ex ( ) in their sign_final
* and verify_final methods .
*/
2020-10-26 20:23:14 +08:00
if ( sigkey ! = NULL ) {
BIO_printf ( bio_err , " Signing key cannot be specified for XOF \n " ) ;
goto end ;
}
}
1998-12-21 18:52:47 +08:00
if ( argc = = 0 ) {
BIO_set_fp ( in , stdin , BIO_NOCLOSE ) ;
2020-10-26 20:23:14 +08:00
ret = do_fp ( out , buf , inp , separator , out_bin , xoflen , sigkey , sigbuf ,
2019-03-29 14:11:57 +08:00
siglen , NULL , md_name , " stdin " ) ;
1998-12-21 18:52:47 +08:00
} else {
2019-03-29 14:11:57 +08:00
const char * sig_name = NULL ;
2020-06-09 16:21:58 +08:00
if ( out_bin = = 0 ) {
2020-09-13 18:09:20 +08:00
if ( sigkey ! = NULL )
2021-04-14 18:42:30 +08:00
sig_name = EVP_PKEY_get0_type_name ( sigkey ) ;
2007-05-18 00:19:17 +08:00
}
2020-06-09 16:21:58 +08:00
ret = EXIT_SUCCESS ;
1998-12-21 18:52:47 +08:00
for ( i = 0 ; i < argc ; i + + ) {
if ( BIO_read_filename ( in , argv [ i ] ) < = 0 ) {
perror ( argv [ i ] ) ;
2020-06-09 16:21:58 +08:00
ret = EXIT_FAILURE ;
1998-12-21 18:52:47 +08:00
continue ;
2017-06-13 01:24:02 +08:00
} else {
2020-06-09 16:21:58 +08:00
if ( do_fp ( out , buf , inp , separator , out_bin , xoflen ,
sigkey , sigbuf , siglen , sig_name , md_name , argv [ i ] ) )
ret = EXIT_FAILURE ;
2017-06-13 01:24:02 +08:00
}
1999-06-11 00:29:32 +08:00
( void ) BIO_reset ( bmd ) ;
2015-01-22 11:40:55 +08:00
}
1998-12-21 18:52:47 +08:00
}
end :
2020-06-09 16:21:58 +08:00
if ( ret ! = EXIT_SUCCESS )
ERR_print_errors ( bio_err ) ;
2015-05-01 05:57:32 +08:00
OPENSSL_clear_free ( buf , BUFSIZE ) ;
2015-03-25 23:31:18 +08:00
BIO_free ( in ) ;
2015-05-02 02:37:16 +08:00
OPENSSL_free ( passin ) ;
On VMS, stdout may very well lead to a file that is written to in a
record-oriented fashion. That means that every write() will write a
separate record, which will be read separately by the programs trying
to read from it. This can be very confusing.
The solution is to put a BIO filter in the way that will buffer text
until a linefeed is reached, and then write everything a line at a
time, so every record written will be an actual line, not chunks of
lines and not (usually doesn't happen, but I've seen it once) several
lines in one record. Voila, BIO_f_linebuffer() is born.
Since we're so close to release time, I'm making this VMS-only for
now, just to make sure no code is needlessly broken by this. After
the release, this BIO method will be enabled on all other platforms as
well.
2000-09-20 21:55:50 +08:00
BIO_free_all ( out ) ;
2021-02-18 05:15:27 +08:00
EVP_MD_free ( md ) ;
2000-08-31 00:14:29 +08:00
EVP_PKEY_free ( sigkey ) ;
2015-05-02 02:37:16 +08:00
sk_OPENSSL_STRING_free ( sigopts ) ;
sk_OPENSSL_STRING_free ( macopts ) ;
2015-05-01 22:02:07 +08:00
OPENSSL_free ( sigbuf ) ;
2015-03-25 23:31:18 +08:00
BIO_free ( bmd ) ;
2016-09-29 05:39:18 +08:00
release_engine ( e ) ;
2017-10-17 22:04:09 +08:00
return ret ;
1998-12-21 18:52:47 +08:00
}
2019-09-16 20:09:01 +08:00
static void show_digests ( const OBJ_NAME * name , void * arg )
{
struct doall_dgst_digests * dec = ( struct doall_dgst_digests * ) arg ;
2024-07-31 04:29:34 +08:00
EVP_MD * md = NULL ;
2019-09-16 20:09:01 +08:00
/* Filter out signed digests (a.k.a signature algorithms) */
if ( strstr ( name - > name , " rsa " ) ! = NULL | | strstr ( name - > name , " RSA " ) ! = NULL )
return ;
if ( ! islower ( ( unsigned char ) * name - > name ) )
return ;
/* Filter out message digests that we cannot use */
2022-07-04 22:15:07 +08:00
md = EVP_MD_fetch ( app_get0_libctx ( ) , name - > name , app_get0_propq ( ) ) ;
2023-03-30 19:30:59 +08:00
if ( md = = NULL ) {
2024-07-31 04:29:34 +08:00
if ( EVP_get_digestbyname ( name - > name ) = = NULL )
2023-03-30 19:30:59 +08:00
return ;
}
2019-09-16 20:09:01 +08:00
BIO_printf ( dec - > bio , " -%-25s " , name - > name ) ;
if ( + + dec - > n = = 3 ) {
BIO_printf ( dec - > bio , " \n " ) ;
dec - > n = 0 ;
} else {
BIO_printf ( dec - > bio , " " ) ;
}
2024-07-31 04:29:34 +08:00
EVP_MD_free ( md ) ;
2019-09-16 20:09:01 +08:00
}
2019-03-30 09:22:51 +08:00
/*
* The newline_escape_filename function performs newline escaping for any
* filename that contains a newline . This function also takes a pointer
* to backslash . The backslash pointer is a flag to indicating whether a newline
* is present in the filename . If a newline is present , the backslash flag is
* set and the output format will contain a backslash at the beginning of the
* digest output . This output format is to replicate the output format found
* in the ' * sum ' checksum programs . This aims to preserve backward
* compatibility .
*/
2023-07-17 02:03:40 +08:00
static const char * newline_escape_filename ( const char * file , int * backslash )
2019-03-30 09:22:51 +08:00
{
size_t i , e = 0 , length = strlen ( file ) , newline_count = 0 , mem_len = 0 ;
char * file_cpy = NULL ;
for ( i = 0 ; i < length ; i + + )
if ( file [ i ] = = ' \n ' )
newline_count + + ;
mem_len = length + newline_count + 1 ;
file_cpy = app_malloc ( mem_len , file ) ;
i = 0 ;
2021-10-26 15:16:18 +08:00
while ( e < length ) {
2019-03-30 09:22:51 +08:00
const char c = file [ e ] ;
if ( c = = ' \n ' ) {
file_cpy [ i + + ] = ' \\ ' ;
file_cpy [ i + + ] = ' n ' ;
* backslash = 1 ;
} else {
file_cpy [ i + + ] = c ;
}
e + + ;
}
file_cpy [ i ] = ' \0 ' ;
return ( const char * ) file_cpy ;
}
2020-10-26 20:23:14 +08:00
int do_fp ( BIO * out , unsigned char * buf , BIO * bp , int sep , int binout , int xoflen ,
2007-05-18 00:19:17 +08:00
EVP_PKEY * key , unsigned char * sigin , int siglen ,
const char * sig_name , const char * md_name ,
2016-02-14 11:33:56 +08:00
const char * file )
1998-12-21 18:52:47 +08:00
{
2019-10-28 10:12:06 +08:00
size_t len = BUFSIZE ;
2020-06-09 16:21:58 +08:00
int i , backslash = 0 , ret = EXIT_FAILURE ;
2020-10-26 20:23:14 +08:00
unsigned char * allocated_buf = NULL ;
2015-01-22 11:40:55 +08:00
openssl dgst, openssl enc: check for end of input
The input reading loop in 'openssl dgst' and 'openssl enc' doesn't
check for end of input, and because of the way BIO works, it thereby
won't detect that the end is reached before the read is an error.
With the FILE BIO, an error occurs when trying to read past EOF, which
is fairly much ok, except when the command is used interactively, at
least on Unix. The result in that case is that the user has to press
Ctrl-D twice for the command to terminate.
The issue is further complicated because both these commands use
filter BIOs on top of the FILE BIO, so a naïve attempt to check
BIO_eof() doesn't quite solve it, since that only checks the state of
the source/sink BIO, and the filter BIO may have some buffered data
that still needs to be read. Fortunately, there's BIO_pending() that
checks exactly that, if any filter BIO has pending data that needs to
be processed.
We end up having to check both BIO_pending() and BIO_eof().
Thanks to Zsigmond Lőrinczy for the initial effort and inspiration.
Fixes #9355
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/9668)
2019-08-22 19:34:16 +08:00
while ( BIO_pending ( bp ) | | ! BIO_eof ( bp ) ) {
1998-12-21 18:52:47 +08:00
i = BIO_read ( bp , ( char * ) buf , BUFSIZE ) ;
2002-06-11 20:41:37 +08:00
if ( i < 0 ) {
2020-06-09 16:21:58 +08:00
BIO_printf ( bio_err , " Read error in %s \n " , file ) ;
2019-10-28 10:12:06 +08:00
goto end ;
2002-06-11 20:41:37 +08:00
}
if ( i = = 0 )
break ;
1998-12-21 18:52:47 +08:00
}
2017-06-13 01:24:02 +08:00
if ( sigin ! = NULL ) {
2000-08-31 00:14:29 +08:00
EVP_MD_CTX * ctx ;
BIO_get_md_ctx ( bp , & ctx ) ;
2007-04-08 20:47:18 +08:00
i = EVP_DigestVerifyFinal ( ctx , sigin , ( unsigned int ) siglen ) ;
2017-06-13 01:24:02 +08:00
if ( i > 0 ) {
2002-06-11 20:41:37 +08:00
BIO_printf ( out , " Verified OK \n " ) ;
2017-06-13 01:24:02 +08:00
} else if ( i = = 0 ) {
2020-06-09 16:21:58 +08:00
BIO_printf ( out , " Verification failure \n " ) ;
2019-10-28 10:12:06 +08:00
goto end ;
2000-08-31 00:14:29 +08:00
} else {
2020-06-09 16:21:58 +08:00
BIO_printf ( bio_err , " Error verifying data \n " ) ;
2019-10-28 10:12:06 +08:00
goto end ;
2000-08-31 00:14:29 +08:00
}
2020-06-09 16:21:58 +08:00
ret = EXIT_SUCCESS ;
2019-10-28 10:12:06 +08:00
goto end ;
2000-08-31 00:14:29 +08:00
}
2017-06-13 01:24:02 +08:00
if ( key ! = NULL ) {
2000-08-31 00:14:29 +08:00
EVP_MD_CTX * ctx ;
2020-01-10 04:37:32 +08:00
size_t tmplen ;
2000-08-31 00:14:29 +08:00
BIO_get_md_ctx ( bp , & ctx ) ;
2020-01-10 04:37:32 +08:00
if ( ! EVP_DigestSignFinal ( ctx , NULL , & tmplen ) ) {
2020-06-09 16:21:58 +08:00
BIO_printf ( bio_err , " Error getting maximum length of signed data \n " ) ;
2020-01-10 04:37:32 +08:00
goto end ;
}
if ( tmplen > BUFSIZE ) {
len = tmplen ;
2020-10-26 20:23:14 +08:00
allocated_buf = app_malloc ( len , " Signature buffer " ) ;
buf = allocated_buf ;
2019-10-28 10:12:06 +08:00
}
2007-04-30 23:20:10 +08:00
if ( ! EVP_DigestSignFinal ( ctx , buf , & len ) ) {
2020-06-09 16:21:58 +08:00
BIO_printf ( bio_err , " Error signing data \n " ) ;
2019-10-28 10:12:06 +08:00
goto end ;
2000-08-31 00:14:29 +08:00
}
2020-10-26 20:23:14 +08:00
} else if ( xoflen > 0 ) {
EVP_MD_CTX * ctx ;
len = xoflen ;
if ( len > BUFSIZE ) {
allocated_buf = app_malloc ( len , " Digest buffer " ) ;
buf = allocated_buf ;
}
BIO_get_md_ctx ( bp , & ctx ) ;
if ( ! EVP_DigestFinalXOF ( ctx , buf , len ) ) {
BIO_printf ( bio_err , " Error Digesting Data \n " ) ;
goto end ;
}
2000-08-31 00:14:29 +08:00
} else {
len = BIO_gets ( bp , ( char * ) buf , BUFSIZE ) ;
2020-06-09 16:21:58 +08:00
if ( ( int ) len < 0 )
2019-10-28 10:12:06 +08:00
goto end ;
2009-03-19 02:53:08 +08:00
}
2015-01-22 11:40:55 +08:00
2017-06-13 01:24:02 +08:00
if ( binout ) {
2000-08-31 00:14:29 +08:00
BIO_write ( out , buf , len ) ;
2017-06-13 01:24:02 +08:00
} else if ( sep = = 2 ) {
2019-03-30 09:22:51 +08:00
file = newline_escape_filename ( file , & backslash ) ;
if ( backslash = = 1 )
BIO_puts ( out , " \\ " ) ;
2009-10-16 01:13:54 +08:00
for ( i = 0 ; i < ( int ) len ; i + + )
BIO_printf ( out , " %02x " , buf [ i ] ) ;
2019-03-30 09:22:51 +08:00
2009-10-16 01:13:54 +08:00
BIO_printf ( out , " *%s \n " , file ) ;
2019-03-30 09:22:51 +08:00
OPENSSL_free ( ( char * ) file ) ;
2000-08-31 00:14:29 +08:00
} else {
2017-06-13 01:24:02 +08:00
if ( sig_name ! = NULL ) {
2014-06-30 06:25:59 +08:00
BIO_puts ( out , sig_name ) ;
2017-06-13 01:24:02 +08:00
if ( md_name ! = NULL )
2014-06-30 06:25:59 +08:00
BIO_printf ( out , " -%s " , md_name ) ;
BIO_printf ( out , " (%s)= " , file ) ;
2017-06-13 01:24:02 +08:00
} else if ( md_name ! = NULL ) {
2007-05-21 23:53:30 +08:00
BIO_printf ( out , " %s(%s)= " , md_name , file ) ;
2017-06-13 01:24:02 +08:00
} else {
2007-05-21 23:53:30 +08:00
BIO_printf ( out , " (%s)= " , file ) ;
2017-06-13 01:24:02 +08:00
}
2007-02-19 02:21:57 +08:00
for ( i = 0 ; i < ( int ) len ; i + + ) {
2000-08-31 00:14:29 +08:00
if ( sep & & ( i ! = 0 ) )
BIO_printf ( out , " : " ) ;
BIO_printf ( out , " %02x " , buf [ i ] ) ;
}
BIO_printf ( out , " \n " ) ;
1998-12-21 18:52:47 +08:00
}
2019-10-28 10:12:06 +08:00
2020-06-09 16:21:58 +08:00
ret = EXIT_SUCCESS ;
2019-10-28 10:12:06 +08:00
end :
2020-10-26 20:23:14 +08:00
if ( allocated_buf ! = NULL )
OPENSSL_clear_free ( allocated_buf , len ) ;
2019-10-28 10:12:06 +08:00
return ret ;
1998-12-21 18:52:47 +08:00
}