Displaying 1 result from an estimated 1 matches for "ssh1key".
2003 Oct 08
4
OS/390 openssh
...ffer_get_binary(m, &bloblen);
buffer_init(&kex->peer);
buffer_append(&kex->peer, blob, bloblen);
xfree(blob);
@@ -1586,23 +1586,23 @@
if (!compat20) {
child_state.ssh1protoflags = buffer_get_int(&m);
child_state.ssh1cipher = buffer_get_int(&m);
- child_state.ssh1key = buffer_get_string(&m,
+ child_state.ssh1key = buffer_get_binary(&m,
&child_state.ssh1keylen);
- child_state.ivout = buffer_get_string(&m,
+ child_state.ivout = buffer_get_binary(&m,
&child_state.ivoutlen);
- child_state.ivin = buffer_get_string(&m, &a...