| cipher.c | 95 struct chachapoly_ctx *cp_ctx; member in struct:sshcipher_ctx 294 cc->cp_ctx = chachapoly_new(key, keylen); 295 ret = cc->cp_ctx != NULL ? 0 : SSH_ERR_INVALID_ARGUMENT; 373 return chachapoly_crypt(cc->cp_ctx, seqnr, dest, src, 436 return chachapoly_get_length(cc->cp_ctx, plenp, seqnr, 450 chachapoly_free(cc->cp_ctx); 451 cc->cp_ctx = NULL;
|