Deleted Added
full compact
prime.c (312826) prime.c (325335)
1/* ====================================================================
2 * Copyright (c) 2004 The OpenSSL Project. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright

--- 141 unchanged lines hidden (view full) ---

150 BIO_free_all(bio_out);
151
152 return 0;
153
154 bad:
155 BIO_printf(bio_err, "options are\n");
156 BIO_printf(bio_err, "%-14s hex\n", "-hex");
157 BIO_printf(bio_err, "%-14s number of checks\n", "-checks <n>");
1/* ====================================================================
2 * Copyright (c) 2004 The OpenSSL Project. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright

--- 141 unchanged lines hidden (view full) ---

150 BIO_free_all(bio_out);
151
152 return 0;
153
154 bad:
155 BIO_printf(bio_err, "options are\n");
156 BIO_printf(bio_err, "%-14s hex\n", "-hex");
157 BIO_printf(bio_err, "%-14s number of checks\n", "-checks <n>");
158 BIO_printf(bio_err, "%-14s generate prime\n", "-generate");
159 BIO_printf(bio_err, "%-14s number of bits\n", "-bits <n>");
160 BIO_printf(bio_err, "%-14s safe prime\n", "-safe");
158 return 1;
159}
161 return 1;
162}