| cipher.c | 94 struct chachapoly_ctx *cp_ctx; member in struct:sshcipher_ctx 293 cc->cp_ctx = chachapoly_new(key, keylen); 294 ret = cc->cp_ctx != NULL ? 0 : SSH_ERR_INVALID_ARGUMENT; 372 return chachapoly_crypt(cc->cp_ctx, seqnr, dest, src, 435 return chachapoly_get_length(cc->cp_ctx, plenp, seqnr, 449 chachapoly_free(cc->cp_ctx); 450 cc->cp_ctx = NULL;
|