Searched refs:keybits (Results 1 – 8 of 8) sorted by relevance
/external/libppp/src/ |
D | mppe.c | 102 int keybits; /* 40, 56 or 128 bits */ member 133 switch(mp->keybits) { in MPPEReduceSessionKey() 490 switch(cfg->mppe.keybits) { in MPPE_ConfigVal() 553 if (!cfg->mppe.keybits) { in MPPESetOptsOutput() 614 if (cfg->mppe.keybits) { in MPPESetOptsInput() 656 mp->keybits = 128; in MPPE_InitState() 660 mp->keybits = 56; in MPPE_InitState() 664 mp->keybits = 40; in MPPE_InitState() 693 log_Printf(LogDEBUG, "MPPE: InitInput: %d-bits\n", mip->keybits); in MPPEInitInput() 749 log_Printf(LogDEBUG, "MPPE: InitOutput: %d-bits\n", mop->keybits); in MPPEInitOutput()
|
D | ccp.h | 76 int keybits; member
|
D | ccp.c | 202 if (ccp->cfg.mppe.keybits) in ccp_ReportStatus() 203 prompt_Printf(arg->prompt, "%d bits, ", ccp->cfg.mppe.keybits); in ccp_ReportStatus() 261 ccp->cfg.mppe.keybits = 0; in ccp_Init()
|
D | command.c | 1778 l->ccp.cfg.mppe.keybits = 0; in SetVariable() 1810 l->ccp.cfg.mppe.keybits = long_val; in SetVariable()
|
/external/openssh/ |
D | auth-rsa.c | 187 int keybits; in rsa_key_allowed_in_file() local 229 keybits = BN_num_bits(key->rsa->n); in rsa_key_allowed_in_file() 230 if (keybits < 0 || bits != (u_int)keybits) in rsa_key_allowed_in_file()
|
D | auth1.c | 166 int keybits, authenticated = 0; in auth1_process_rhosts_rsa() local 184 keybits = BN_num_bits(client_host_key->rsa->n); in auth1_process_rhosts_rsa() 185 if (keybits < 0 || bits != (u_int)keybits) { in auth1_process_rhosts_rsa()
|
D | authfd.c | 316 int keybits; in ssh_get_next_identity() local 337 keybits = BN_num_bits(key->rsa->n); in ssh_get_next_identity() 338 if (keybits < 0 || bits != (u_int)keybits) in ssh_get_next_identity()
|
/external/openssl/crypto/aes/ |
D | aes_wrap.c | 143 int AES_wrap_unwrap_test(const unsigned char *kek, int keybits, in AES_wrap_unwrap_test() argument 155 if (AES_set_encrypt_key(kek, keybits, &wctx)) in AES_wrap_unwrap_test() 164 if (AES_set_decrypt_key(kek, keybits, &wctx)) in AES_wrap_unwrap_test()
|