| OLD | NEW |
| 1 /* rsautl.c */ | 1 /* rsautl.c */ |
| 2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
| 3 * project 2000. | 3 * project 2000. |
| 4 */ | 4 */ |
| 5 /* ==================================================================== | 5 /* ==================================================================== |
| 6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved. | 6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 BIO_printf(bio_err, "-encrypt encrypt with public key\n"); | 335 BIO_printf(bio_err, "-encrypt encrypt with public key\n"); |
| 336 BIO_printf(bio_err, "-decrypt decrypt with private key\n"); | 336 BIO_printf(bio_err, "-decrypt decrypt with private key\n"); |
| 337 BIO_printf(bio_err, "-hexdump hex dump output\n"); | 337 BIO_printf(bio_err, "-hexdump hex dump output\n"); |
| 338 #ifndef OPENSSL_NO_ENGINE | 338 #ifndef OPENSSL_NO_ENGINE |
| 339 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware d
evice.\n"); | 339 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware d
evice.\n"); |
| 340 BIO_printf (bio_err, "-passin arg pass phrase source\n"); | 340 BIO_printf (bio_err, "-passin arg pass phrase source\n"); |
| 341 #endif | 341 #endif |
| 342 | 342 |
| 343 } | 343 } |
| 344 | 344 |
| 345 #else /* !OPENSSL_NO_RSA */ |
| 346 |
| 347 # if PEDANTIC |
| 348 static void *dummy=&dummy; |
| 349 # endif |
| 350 |
| 345 #endif | 351 #endif |
| OLD | NEW |