Home
last modified time | relevance | path

Searched refs:numbits (Results 1 – 23 of 23) sorted by relevance

/minix3/crypto/external/bsd/openssl/dist/crypto/des/
H A Dcfb_enc.c73 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 Dofb_enc.c67 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 DDES.xs137 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 Ddes_old.c136 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 Dcfb64ede.c146 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 Ddes.h157 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 Ddes_old.h362 int numbits, long length,
415 int numbits, long length,
/minix3/crypto/external/bsd/openssl/lib/libdes/
H A Doofb_enc.c67 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 Docfb_enc.c67 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 Ddes.pod44 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 Ddsaparam.pod20 [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 Ddhparam.pod23 [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 Dgenrsa.pod31 [B<numbits>]
77 =item B<numbits>
H A Dgenpkey.pod98 =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 Dnetpgpkeys.c154 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 Ddsaparam.c122 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 Dopenssl_crypto.c686 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 Dnetpgp.c1171 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 Ddes.pod43 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 Dccp.c569 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 DAPInt.cpp117 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 Dir.go483 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 Dssleay.txt2977 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