Searched refs:numbits (Results 1 – 11 of 11) sorted by relevance
/openssl/crypto/des/ |
H A D | cfb_enc.c | 30 void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, in DES_cfb_encrypt() argument 36 register int num = numbits / 8, n = (numbits + 7) / 8, i, rem = in DES_cfb_encrypt() 37 numbits % 8; in DES_cfb_encrypt() 52 if (numbits <= 0 || numbits > 64) in DES_cfb_encrypt() 73 if (numbits == 32) { in DES_cfb_encrypt() 76 } else if (numbits == 64) { in DES_cfb_encrypt() 116 if (numbits == 32) { in DES_cfb_encrypt() 119 } else if (numbits == 64) { in DES_cfb_encrypt()
|
H A D | ofb_enc.c | 24 void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits, in DES_ofb_encrypt() argument 28 register DES_LONG d0, d1, vv0, vv1, v0, v1, n = (numbits + 7) / 8; in DES_ofb_encrypt() 31 register int num = numbits; in DES_ofb_encrypt()
|
H A D | cfb64ede.c | 92 int numbits, long length, DES_key_schedule *ks1, in DES_ede3_cfb_encrypt() argument 97 register unsigned long l = length, n = ((unsigned int)numbits + 7) / 8; in DES_ede3_cfb_encrypt() 98 register int num = numbits, i; in DES_ede3_cfb_encrypt()
|
/openssl/apps/ |
H A D | dsaparam.c | 71 int numbits = -1, numqbits = -1, num = 0, genkey = 0; in dsaparam_main() local 150 numbits = num; in dsaparam_main() 159 if (numbits > 0) { in dsaparam_main() 160 if (numbits > OPENSSL_DSA_MAX_MODULUS_BITS) in dsaparam_main() 164 OPENSSL_DSA_MAX_MODULUS_BITS, numbits); in dsaparam_main() 234 pkey = app_keygen(ctx, "DSA", numbits, verbose); in dsaparam_main()
|
/openssl/doc/man1/ |
H A D | openssl-dsaparam.pod.in | 23 [I<numbits>] 57 this option is not specified. If the I<numbits> parameter is included then 95 =item I<numbits> 98 size I<numbits>. If this argument is included then the input file (if any) is
|
H A D | openssl-dhparam.pod.in | 27 [I<numbits>] 84 present but I<numbits> is present, parameters are generated with the 87 =item I<numbits> 90 I<numbits>. It must be the last option. If this option is present then
|
H A D | openssl-genpkey.pod.in | 145 =item B<rsa_keygen_bits:numbits> 166 =item B<rsa_keygen_bits>:I<numbits>, B<rsa_keygen_primes>:I<numprimes>, 225 =item B<dsa_paramgen_bits>:I<numbits> 229 =item B<dsa_paramgen_q_bits>:I<numbits> 231 =item B<qbits>:I<numbits> 303 =item B<pbits>:I<numbits> 305 =item B<dh_paramgen_prime_len>:I<numbits> 309 =item B<qbits>:I<numbits> 311 =item B<dh_paramgen_subprime_len>:I<numbits>
|
H A D | openssl-genrsa.pod.in | 35 [B<numbits>] 97 =item B<numbits>
|
/openssl/include/openssl/ |
H A D | des.h | 101 void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, 153 int numbits, long length, DES_key_schedule *ks1, 166 void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
|
/openssl/doc/man3/ |
H A D | DES_random_key.pod | 45 int numbits, long length, DES_key_schedule *schedule, 48 int numbits, long length, DES_key_schedule *schedule, 195 a complete DES ECB encryption per I<numbits>, this function is only 214 a complete DES ECB encryption per I<numbits>, this function is only 270 What this means is that if you set numbits to 12, and length to 2, the
|
/openssl/crypto/bn/ |
H A D | bn_gf2m.c | 734 int numbits; in BN_GF2m_mod_inv() local 741 numbits = BN_num_bits(p); in BN_GF2m_mod_inv() 742 if (numbits <= 1) in BN_GF2m_mod_inv() 747 if (!BN_priv_rand_ex(b, numbits - 1, in BN_GF2m_mod_inv()
|
Completed in 42 milliseconds