Displaying 6 results from an estimated 6 matches for "bn_mod_word".
2014 Dec 28
2
[Bug 2330] New: Moduli Generation - Generator 3 not possible at all!
...Status: NEW
          Severity: enhancement
          Priority: P5
         Component: ssh-keygen
          Assignee: unassigned-bugs at mindrot.org
          Reporter: wiwi at progon.net
The cause lies in lines 713+ in moduli.c
/*
 * guess unknown generator
 */
 if (generator_known == 0) {
  if (BN_mod_word(p, 24) == 11)
   generator_known = 2;
  else if (BN_mod_word(p, 12) == 5)
   generator_known = 3;
  else {
   u_int32_t r = BN_mod_word(p, 10);
   if (r == 3 || r == 7)
    generator_known = 5;
  }
 }
As p is Sophie-Germain prime: p=2q+1, where q is a prime as well.
  p   = 5 (mod 12)
  2q+1= 5 (...
2007 Apr 26
2
fail to build ssh
...t_newkeys':
/usr/src/SparcV8Linux/openssh-4.6p1/packet.c:670: undefined reference to
`__ashldi3'
/opt/sparc-linux/lib/libcrypto.a(bn_div.o)(.text+0x264): In function
`BN_div':
: undefined reference to `__udivdi3'
/opt/sparc-linux/lib/libcrypto.a(bn_word.o)(.text+0x264): In function
`BN_mod_word':
: undefined reference to `__umoddi3'
/opt/sparc-linux/lib/libcrypto.a(b_print.o)(.text+0x3c4): In function
`fmtint':
: undefined reference to `__umoddi3'
/opt/sparc-linux/lib/libcrypto.a(b_print.o)(.text+0x3fc): In function
`fmtint':
: undefined reference to `__udivdi3'
ma...
2014 Oct 28
22
[Bug 2302] New: ssh (and sshd) should not fall back to deselected KEX algos
https://bugzilla.mindrot.org/show_bug.cgi?id=2302
            Bug ID: 2302
           Summary: ssh (and sshd) should not fall back to deselected KEX
                    algos
           Product: Portable OpenSSH
           Version: 6.7p1
          Hardware: All
                OS: All
            Status: NEW
          Severity: security
          Priority: P5
         Component: ssh
         
2014 Oct 28
22
[Bug 2302] New: ssh (and sshd) should not fall back to deselected KEX algos
https://bugzilla.mindrot.org/show_bug.cgi?id=2302
            Bug ID: 2302
           Summary: ssh (and sshd) should not fall back to deselected KEX
                    algos
           Product: Portable OpenSSH
           Version: 6.7p1
          Hardware: All
                OS: All
            Status: NEW
          Severity: security
          Priority: P5
         Component: ssh
         
2002 Jul 12
2
HP-UX slow login problem found?
...to measure, but it was definitely
real slow with the gcc compiled version.
Okay, what's going on inside the OpenSSL code....  there are two small
functions which are responsible for about 95% of the CPU clock cycles.
These are bn_mul_add_words() in the file crypto/bn/bn_asm.c and the
function BN_mod_word() in the file crypto/bn/bn_word.c.  The first is
responsible for the miserable RSA speeds, and the later for the
horrible DH speeds.  I'll discuss how to speed each of these up
separately.
The bn_mul_add_words() function is by default implemented in the file
bn_asm.c.  However, neither the gcc...
2007 Feb 19
10
[Bug 1272] Unable to make OpenSSH with undefined refs in readconf.o
http://bugzilla.mindrot.org/show_bug.cgi?id=1272
------- Comment #9 from dtucker at zip.com.au  2007-02-19 23:22 -------
Another thought: do you have multiple instances of libgcc?  Perhaps one
in /usr/local/lib and one elsewhere?
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.