summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--sshbuf.h8
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c04af4aa8..3925c6055 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,10 @@
11 [sshconnect2.c] 11 [sshconnect2.c]
12 fix inverted test that caused PKCS#11 keys that were explicitly listed 12 fix inverted test that caused PKCS#11 keys that were explicitly listed
13 not to be preferred. Reported by Dirk-Willem van Gulik 13 not to be preferred. Reported by Dirk-Willem van Gulik
14 - dtucker@cvs.openbsd.org 2014/06/10 21:46:11
15 [sshbuf.h]
16 Group ECC functions together to make things a little easier in -portable.
17 "doesn't bother me" deraadt@
14 18
1520140527 1920140527
16 - (djm) [cipher.c] Fix merge botch. 20 - (djm) [cipher.c] Fix merge botch.
diff --git a/sshbuf.h b/sshbuf.h
index 1d7da31c7..a3ebce3ec 100644
--- a/sshbuf.h
+++ b/sshbuf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshbuf.h,v 1.1 2014/04/30 05:29:56 djm Exp $ */ 1/* $OpenBSD: sshbuf.h,v 1.2 2014/06/10 21:46:11 dtucker Exp $ */
2/* 2/*
3 * Copyright (c) 2011 Damien Miller 3 * Copyright (c) 2011 Damien Miller
4 * 4 *
@@ -206,13 +206,13 @@ int sshbuf_peek_string_direct(const struct sshbuf *buf, const u_char **valp,
206 */ 206 */
207int sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM *v); 207int sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM *v);
208int sshbuf_get_bignum1(struct sshbuf *buf, BIGNUM *v); 208int sshbuf_get_bignum1(struct sshbuf *buf, BIGNUM *v);
209int sshbuf_get_ec(struct sshbuf *buf, EC_POINT *v, const EC_GROUP *g);
210int sshbuf_get_eckey(struct sshbuf *buf, EC_KEY *v);
211int sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v); 209int sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v);
212int sshbuf_put_bignum1(struct sshbuf *buf, const BIGNUM *v); 210int sshbuf_put_bignum1(struct sshbuf *buf, const BIGNUM *v);
211int sshbuf_put_bignum2_bytes(struct sshbuf *buf, const void *v, size_t len);
212int sshbuf_get_ec(struct sshbuf *buf, EC_POINT *v, const EC_GROUP *g);
213int sshbuf_get_eckey(struct sshbuf *buf, EC_KEY *v);
213int sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g); 214int sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g);
214int sshbuf_put_eckey(struct sshbuf *buf, const EC_KEY *v); 215int sshbuf_put_eckey(struct sshbuf *buf, const EC_KEY *v);
215int sshbuf_put_bignum2_bytes(struct sshbuf *buf, const void *v, size_t len);
216 216
217/* Dump the contents of the buffer to stderr in a human-readable format */ 217/* Dump the contents of the buffer to stderr in a human-readable format */
218void sshbuf_dump(struct sshbuf *buf, FILE *f); 218void sshbuf_dump(struct sshbuf *buf, FILE *f);