Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
1dd5fef2
Commit
1dd5fef2
authored
Mar 16, 2017
by
Goswin von Brederlow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zmq_curve_keypair(): return result from crypto_box_keypair() to make testcase meaningfull
parent
da1633eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
zmq_utils.cpp
src/zmq_utils.cpp
+2
-3
test_sodium.cpp
tests/test_sodium.cpp
+0
-1
No files found.
src/zmq_utils.cpp
View file @
1dd5fef2
...
...
@@ -217,12 +217,11 @@ int zmq_curve_keypair (char *z85_public_key, char *z85_secret_key)
uint8_t
public_key
[
32
];
uint8_t
secret_key
[
32
];
// Return codes are suppressed as none of these can actually fail.
crypto_box_keypair
(
public_key
,
secret_key
);
int
res
=
crypto_box_keypair
(
public_key
,
secret_key
);
zmq_z85_encode
(
z85_public_key
,
public_key
,
32
);
zmq_z85_encode
(
z85_secret_key
,
secret_key
,
32
);
return
0
;
return
res
;
#else
(
void
)
z85_public_key
,
(
void
)
z85_secret_key
;
errno
=
ENOTSUP
;
...
...
tests/test_sodium.cpp
View file @
1dd5fef2
...
...
@@ -40,7 +40,6 @@ void test__zmq_curve_keypair__always__success (void)
#if defined (ZMQ_HAVE_CURVE)
assert
(
rc
==
0
);
assert
(
zmq_errno
()
==
0
);
#else
assert
(
rc
==
-
1
);
assert
(
zmq_errno
()
==
ENOTSUP
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment