Lines Matching refs:keylen
513 return_type aes_set_key( const unsigned char key[], length_type keylen, aes_context ctx[1] ) argument
517 switch ( keylen ) {
520 keylen = 16;
524 keylen = 24;
528 keylen = 32;
534 block_copy_nn(ctx->ksch, key, keylen);
535 hi = (keylen + 28) << 2;
537 for ( cc = keylen, rc = 1; cc < hi; cc += 4 ) {
544 if ( cc % keylen == 0 ) {
551 } else if ( keylen > 24 && cc % keylen == 16 ) {
557 tt = cc - keylen;