Displaying 3 results from an estimated 3 matches for "prime_test".
2015 Apr 23
16
[Bug 2388] New: build fixups for --without-openssl
https://bugzilla.mindrot.org/show_bug.cgi?id=2388
Bug ID: 2388
Summary: build fixups for --without-openssl
Product: Portable OpenSSH
Version: 6.8p1
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: Build system
Assignee: unassigned-bugs at
2007 Mar 01
1
Proposed patch: ssh-keygen allows writing to stdout for moduli generation
...r")) == NULL) {
fatal("Couldn't open modulus candidate "
@@ -1298,10 +1309,6 @@ main(int ac, char **av)
} else
in = stdin;
- if (out == NULL) {
- fatal("Couldn't open moduli file \"%s\": %s",
- out_file, strerror(errno));
- }
if (prime_test(in, out, trials, generator_wanted) != 0)
fatal("modulus screening failed");
return (0);
2004 Oct 03
3
[PATCH] PreferAskpass in ssh_config
..."
#include "rsa.h"
@@ -27,6 +28,7 @@
#include "pathnames.h"
#include "log.h"
#include "misc.h"
+#include "readconf.h"
#ifdef SMARTCARD
#include "scard.h"
@@ -84,6 +86,11 @@
int gen_candidates(FILE *, int, int, BIGNUM *);
int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
+Options options;
+
+uid_t original_real_uid;
+
+
static void
ask_filename(struct passwd *pw, const char *prompt)
{
@@ -788,7 +795,7 @@
main(int ac, char **av)
{
char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
- char out_file[MA...