Home | History | Annotate | Download | only in openssh

Lines Matching refs:alg

28 	int			 alg;
37 ssh_hmac_bytes(int alg)
39 return ssh_digest_bytes(alg);
43 ssh_hmac_start(int alg)
49 ret->alg = alg;
50 if ((ret->ictx = ssh_digest_start(alg)) == NULL ||
51 (ret->octx = ssh_digest_start(alg)) == NULL ||
52 (ret->digest = ssh_digest_start(alg)) == NULL)
73 else if (ssh_digest_memory(ctx->alg, key, klen, ctx->buf,
109 len = ssh_digest_bytes(ctx->alg);