Skip to content

Commit 69d4a51

Browse files
authored
Certs (#31)
* Added certificate key types and certificate authentication functions * Added cert signing to embedded openssh server, CA host and user keys and certificate authentication tests * Added exec example
1 parent eaa6587 commit 69d4a51

21 files changed

+4801
-6434
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ local
99
libssh/compile_commands.json
1010
wheelhouse
1111
.idea
12+
tests/unit_test_cert_key-cert.pub

examples/exec.py

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import os
2+
import pwd
3+
import socket
4+
5+
from ssh.session import Session
6+
from ssh import options
7+
8+
# Linux only
9+
USERNAME = pwd.getpwuid(os.geteuid()).pw_name
10+
HOST = 'localhost'
11+
PORT = 22
12+
13+
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
14+
sock.connect((HOST, PORT))
15+
16+
s = Session()
17+
s.options_set(options.HOST, HOST)
18+
s.options_set(options.USER, USERNAME)
19+
s.options_set_port(PORT)
20+
s.set_socket(sock)
21+
s.connect()
22+
23+
# Authenticate with agent
24+
s.userauth_agent(USERNAME)
25+
26+
chan = s.channel_new()
27+
chan.open_session()
28+
chan.request_exec('echo me')
29+
size, data = chan.read()
30+
while size > 0:
31+
print(data.strip())
32+
size, data = chan.read()
33+
chan.close()

ssh/c_ssh.pxd

+14-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,14 @@ cdef extern from "libssh/libssh.h" nogil:
175175
SSH_KEYTYPE_ECDSA,
176176
SSH_KEYTYPE_ED25519,
177177
SSH_KEYTYPE_DSS_CERT01,
178-
SSH_KEYTYPE_RSA_CERT01
178+
SSH_KEYTYPE_RSA_CERT01,
179+
SSH_KEYTYPE_ECDSA_P256,
180+
SSH_KEYTYPE_ECDSA_P384,
181+
SSH_KEYTYPE_ECDSA_P521,
182+
SSH_KEYTYPE_ECDSA_P256_CERT01,
183+
SSH_KEYTYPE_ECDSA_P384_CERT01,
184+
SSH_KEYTYPE_ECDSA_P521_CERT01,
185+
SSH_KEYTYPE_ED25519_CERT01
179186
enum ssh_keycmp_e:
180187
SSH_KEY_CMP_PUBLIC,
181188
SSH_KEY_CMP_PRIVATE
@@ -452,6 +459,12 @@ cdef extern from "libssh/libssh.h" nogil:
452459

453460
const char *ssh_pki_key_ecdsa_name(const ssh_key key)
454461

462+
char *ssh_get_fingerprint_hash(ssh_publickey_hash_type type,
463+
unsigned char *hash,
464+
size_t len)
465+
void ssh_print_hash(ssh_publickey_hash_type type,
466+
unsigned char *hash,
467+
size_t len)
455468
void ssh_print_hexa(
456469
const char *descr, const unsigned char *what, size_t len)
457470
int ssh_send_ignore(ssh_session session, const char *data)

0 commit comments

Comments
 (0)