| /minix3/crypto/external/bsd/openssl/dist/crypto/des/ |
| H A D | cfb_enc.c | 73 void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, in DES_cfb_encrypt() argument 79 register int num = numbits / 8, n = (numbits + 7) / 8, i, rem = in DES_cfb_encrypt() 80 numbits % 8; in DES_cfb_encrypt() 95 if (numbits <= 0 || numbits > 64) in DES_cfb_encrypt() 116 if (numbits == 32) { in DES_cfb_encrypt() 119 } else if (numbits == 64) { in DES_cfb_encrypt() 159 if (numbits == 32) { in DES_cfb_encrypt() 162 } else if (numbits == 64) { in DES_cfb_encrypt()
|
| H A D | ofb_enc.c | 67 void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits, in DES_ofb_encrypt() argument 71 register DES_LONG d0, d1, vv0, vv1, v0, v1, n = (numbits + 7) / 8; in DES_ofb_encrypt() 74 register int num = numbits; in DES_ofb_encrypt()
|
| H A D | DES.xs | 137 des_cfb_encrypt(input,numbits,ks,ivec,encrypt) in des_cfb_encrypt() argument 139 int numbits in des_cfb_encrypt() 156 (int)numbits,(long)len,*ks,ivec,encrypt); in des_cfb_encrypt() 179 des_ofb_encrypt(input,numbits,ks,ivec) in des_ofb_encrypt() argument 181 int numbits in des_ofb_encrypt() 197 numbits,len,*ks,ivec); in des_ofb_encrypt()
|
| H A D | des_old.c | 136 int numbits, long length, in _ossl_old_des_cfb_encrypt() argument 140 DES_cfb_encrypt(in, out, numbits, length, in _ossl_old_des_cfb_encrypt() 249 int numbits, long length, in _ossl_old_des_ofb_encrypt() argument 253 DES_ofb_encrypt(in, out, numbits, length, (DES_key_schedule *)schedule, in _ossl_old_des_ofb_encrypt()
|
| H A D | cfb64ede.c | 146 int numbits, long length, DES_key_schedule *ks1, in DES_ede3_cfb_encrypt() argument 151 register unsigned long l = length, n = ((unsigned int)numbits + 7) / 8; in DES_ede3_cfb_encrypt() 152 register int num = numbits, i; in DES_ede3_cfb_encrypt()
|
| H A D | des.h | 157 void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, 203 int numbits, long length, DES_key_schedule *ks1, 221 void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
|
| H A D | des_old.h | 362 int numbits, long length, 415 int numbits, long length,
|
| /minix3/crypto/external/bsd/openssl/lib/libdes/ |
| H A D | oofb_enc.c | 67 void des_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits, in des_ofb_encrypt() argument 70 register DES_LONG d0,d1,vv0,vv1,v0,v1,n=(numbits+7)/8; in des_ofb_encrypt() 73 register int num=numbits; in des_ofb_encrypt()
|
| H A D | ocfb_enc.c | 67 void des_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, in des_cfb_encrypt() argument 70 register DES_LONG d0,d1,v0,v1,n=(numbits+7)/8; in des_cfb_encrypt() 73 register int num=numbits; in des_cfb_encrypt()
|
| H A D | des.pod | 44 int numbits, long length, des_key_schedule schedule, 47 int numbits, long length, des_key_schedule schedule, 211 a complete DES ECB encryption per I<numbits>, this function is only 230 a complete DES ECB encryption per numbits, this function is only 327 What this means is that if you set numbits to 12, and length to 2, the
|
| /minix3/crypto/external/bsd/openssl/dist/doc/apps/ |
| H A D | dsaparam.pod | 20 [B<numbits>] 45 this option is not specified. If the B<numbits> parameter is included then 80 =item B<numbits> 83 B<numbits>. It must be the last option. If this option is included then
|
| H A D | dhparam.pod | 23 [I<numbits>] 76 present but B<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 106 be loaded by calling the B<get_dh>I<numbits>B<()> function.
|
| H A D | genrsa.pod | 31 [B<numbits>] 77 =item B<numbits>
|
| H A D | genpkey.pod | 98 =item B<rsa_keygen_bits:numbits> 113 =item B<dsa_paramgen_bits:numbits> 123 =item B<dh_paramgen_prime_len:numbits>
|
| /minix3/crypto/external/bsd/netpgp/dist/src/netpgpkeys/ |
| H A D | netpgpkeys.c | 154 int numbits; /* # of bits */ member 225 return netpgp_generate_key(netpgp, f, p->numbits); in netpgp_cmd() 309 p->numbits = atoi(arg); in setoption() 404 p.numbits = DEFAULT_NUMBITS; in main()
|
| /minix3/crypto/external/bsd/openssl/dist/apps/ |
| H A D | dsaparam.c | 122 int numbits = -1, num, genkey = 0; in MAIN() local 196 numbits = num; in MAIN() 277 if (numbits > 0) { in MAIN()
|
| /minix3/crypto/external/bsd/netpgp/dist/src/lib/ |
| H A D | openssl_crypto.c | 686 const int numbits, in rsa_generate_keypair() argument 703 rsa = RSA_generate_key(numbits, e, NULL, NULL); in rsa_generate_keypair() 797 pgp_rsa_new_selfsign_key(const int numbits, in pgp_rsa_new_selfsign_key() argument 806 if (!rsa_generate_keypair(keydata, numbits, e, hashalg, cipher) || in pgp_rsa_new_selfsign_key()
|
| H A D | netpgp.c | 1171 netpgp_generate_key(netpgp_t *netpgp, char *id, int numbits) in netpgp_generate_key() argument 1197 "RSA %d-bit key <%s@localhost>", numbits, getenv("LOGNAME")); in netpgp_generate_key() 1200 key = pgp_rsa_new_selfsign_key(numbits, 65537UL, uid, in netpgp_generate_key()
|
| /minix3/crypto/external/bsd/openssl/dist/doc/crypto/ |
| H A D | des.pod | 43 int numbits, long length, DES_key_schedule *schedule, 46 int numbits, long length, DES_key_schedule *schedule, 198 a complete DES ECB encryption per I<numbits>, this function is only 217 a complete DES ECB encryption per numbits, this function is only 297 What this means is that if you set numbits to 12, and length to 2, the
|
| /minix3/minix/lib/liblwip/dist/src/netif/ppp/ |
| H A D | ccp.c | 569 int numbits; in ccp_resetci() local 586 numbits = 0; in ccp_resetci() 588 numbits += auth_mschap_bits & 1; in ccp_resetci() 591 if (numbits > 1) { in ccp_resetci() 596 if (!numbits) { in ccp_resetci()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Support/ |
| H A D | APInt.cpp | 117 APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix) in APInt() argument 118 : BitWidth(numbits), VAL(0) { in APInt() 120 fromString(numbits, Str, radix); in APInt() 2105 void APInt::fromString(unsigned numbits, StringRef str, uint8_t radix) { in fromString() argument 2120 assert((slen <= numbits || radix != 2) && "Insufficient bit width"); in fromString() 2121 assert(((slen-1)*3 <= numbits || radix != 8) && "Insufficient bit width"); in fromString() 2122 assert(((slen-1)*4 <= numbits || radix != 16) && "Insufficient bit width"); in fromString() 2123 assert((((slen-1)*64)/22 <= numbits || radix != 10) && in fromString()
|
| /minix3/external/bsd/llvm/dist/llvm/bindings/go/llvm/ |
| H A D | ir.go | 483 func (c Context) IntType(numbits int) (t Type) { 484 t.C = C.LLVMIntTypeInContext(c.C, C.unsigned(numbits)) 494 func IntType(numbits int) (t Type) { 495 t.C = C.LLVMIntType(C.unsigned(numbits))
|
| /minix3/crypto/external/bsd/openssl/dist/doc/ |
| H A D | ssleay.txt | 2977 int numbits, 2983 in numbit blocks. The input (and output) is in multiples of numbits 2984 bits. numbits should to be a multiple of 8 bits. Length is the 2985 number of bytes input. If numbits is not a multiple of 8 bits, 2987 numbits is 12, for each 2 input bytes, the 4 high bits of the 2989 a numbits of 12 take 12 bytes. To encode 72 bits when using 2990 numbits of 9 will take 16 bytes. To encode 80 bits when using 2991 numbits of 16 will take 10 bytes. etc, etc. This padding will 3028 int numbits, 3033 the same as des_cfb_encrypt() in that numbits is the size of the
|