Searched refs:ilen (Results 1 - 5 of 5) sorted by relevance

/netgear-R7800-V1.0.2.28/package/px5g/src/polarssl/
H A Dsha1.h68 * \param ilen length of the input data
70 void sha1_update( sha1_context *ctx, unsigned char *input, int ilen );
84 * \param ilen length of the input data
87 void sha1( unsigned char *input, int ilen, unsigned char output[20] );
114 * \param ilen length of the input data
116 void sha1_hmac_update( sha1_context *ctx, unsigned char *input, int ilen );
132 * \param ilen length of the input data
136 unsigned char *input, int ilen,
H A Drsa.h211 * \param ilen contains the the plaintext length
221 int mode, int ilen,
/netgear-R7800-V1.0.2.28/package/px5g/src/library/
H A Drsa.c296 int mode, int ilen,
309 if( ilen < 0 || olen < ilen + 11 )
312 nb_pad = olen - 3 - ilen;
325 memcpy( p, input, ilen );
347 int ret, ilen; local
351 ilen = ctx->len;
353 if( ilen < 16 || ilen > (int) sizeof( buf ) )
374 if( p >= buf + ilen
295 rsa_pkcs1_encrypt( rsa_context *ctx, int mode, int ilen, unsigned char *input, unsigned char *output ) argument
[all...]
H A Dsha1.c247 void sha1_update( sha1_context *ctx, unsigned char *input, int ilen )
252 if( ilen <= 0 )
258 ctx->total[0] += ilen;
261 if( ctx->total[0] < (unsigned long) ilen )
264 if( left && ilen >= fill )
270 ilen -= fill;
274 while( ilen >= 64 )
278 ilen -= 64;
281 if( ilen > 0 )
284 (void *) input, ilen );
328 sha1( unsigned char *input, int ilen, unsigned char output[20] ) argument
428 sha1_hmac( unsigned char *key, int keylen, unsigned char *input, int ilen, unsigned char output[20] ) argument
[all...]
/netgear-R7800-V1.0.2.28/target/linux/generic/files/crypto/ocf/
H A Dcryptosoft.c1086 int ilen = sg_len, olen = CRYPTO_MAX_DATA_LEN; local
1112 ibuf, ilen, obuf, &olen);
1121 ibuf, ilen, obuf, &olen);

Completed in 82 milliseconds