1 /* $OpenBSD: bufec.c,v 1.4 2014/04/30 05:29:56 djm Exp $ */
4 * Copyright (c) 2012 Damien Miller <djm@mindrot.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 /* Emulation wrappers for legacy OpenSSH buffer API atop sshbuf */
23 #include <sys/types.h>
29 #ifdef OPENSSL_HAS_ECC
32 buffer_put_ecpoint_ret(Buffer
*buffer
, const EC_GROUP
*curve
,
33 const EC_POINT
*point
)
37 if ((ret
= sshbuf_put_ec(buffer
, point
, curve
)) != 0) {
38 error("%s: %s", __func__
, ssh_err(ret
));
45 buffer_put_ecpoint(Buffer
*buffer
, const EC_GROUP
*curve
,
46 const EC_POINT
*point
)
48 if (buffer_put_ecpoint_ret(buffer
, curve
, point
) == -1)
49 fatal("%s: buffer error", __func__
);
53 buffer_get_ecpoint_ret(Buffer
*buffer
, const EC_GROUP
*curve
,
58 if ((ret
= sshbuf_get_ec(buffer
, point
, curve
)) != 0) {
59 error("%s: %s", __func__
, ssh_err(ret
));
66 buffer_get_ecpoint(Buffer
*buffer
, const EC_GROUP
*curve
,
69 if (buffer_get_ecpoint_ret(buffer
, curve
, point
) == -1)
70 fatal("%s: buffer error", __func__
);
73 #endif /* OPENSSL_HAS_ECC */