Home
last modified time | relevance | path

Searched refs:cryptos (Results 1 – 5 of 5) sorted by relevance

/plan9/sys/src/cmd/ssh2/
H A Dtransport.c11 extern Cipher *cryptos[];
144 blklen = cryptos[c->encrypt]->blklen; in finish_packet()
167 cryptos[c->encrypt]->encrypt(c->enccs, p->nlength, p->rlength + 4); in finish_packet()
191 nb = cryptos[c->decrypt]->blklen; in undo_packet()
196 cryptos[c->decrypt]->decrypt(c->deccs, p->nlength + nb, in undo_packet()
H A Drsa2ssh2.c12 Cipher *cryptos[1]; variable
H A Ddup.out1578 3. cryptos, macnames
1586 2. "host key algs not in pkas", "c2s crypto algs not in cryptos"
1590 6. "c2s crypto algs not in cryptos", "s2c crypto algs not in cryptos"
2552 3. cryptos, macnames
2560 3. cryptos, macnames
2603 2. "s2c crypto algs not in cryptos", "c2s mac algs not in cryptos"
2607 6. "c2s mac algs not in cryptos", "s2c mac algs not in cryptos"
2615 2. "kex algs not in kexes", "c2s mac algs not in cryptos"
2917 1. pkas, cryptos
2920 4. cryptos, macnames
[all …]
H A Dnetssh.c34 Cipher *cryptos[] = { variable
2045 p = seprint(buf, e, "%s", cryptos[0]->name); in send_kexinit()
2046 for (i = 1; i < nelem(cryptos); ++i) in send_kexinit()
2047 p = seprint(p, e, ",%s", cryptos[i]->name); in send_kexinit()
2114 c->c2scs = cryptos[c->cscrypt]->init(c, 0); in negotiating()
2115 c->s2ccs = cryptos[c->sccrypt]->init(c, 1); in negotiating()
2136 cryptos[c->encrypt]->name, cryptos[c->decrypt]->name); in negotiating()
2460 nb = cryptos[c->decrypt]->blklen; in reader0()
2469 cryptos[c->decrypt]->decrypt(c->deccs, p->nlength, nb); in reader0()
2635 for (j = 0; j < nelem(cryptos); ++j) in validatekexs()
[all …]
H A Dmagic.out282 transport.c:167: cryptos[c->encrypt]->encrypt(c->enccs, p->nlength, p->rlength + 4);