diff options
| author | Andreas Schneider <asn@cryptomilk.org> | 2013-10-18 23:21:52 +0200 |
|---|---|---|
| committer | Andreas Schneider <asn@cryptomilk.org> | 2013-10-18 23:50:06 +0200 |
| commit | 5b7f07b484c47497b371b97578c0581b4e96fce4 (patch) | |
| tree | a839238b241c914778af64788ba9fcfe511ec187 /include/libssh/wrapper.h | |
| parent | ec5278e34dd8271c696fe5f54ebc114dc132fe8c (diff) | |
wrapper: Add more evp functions.
Diffstat (limited to 'include/libssh/wrapper.h')
| -rw-r--r-- | include/libssh/wrapper.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libssh/wrapper.h b/include/libssh/wrapper.h index 90c268d9..7374a88a 100644 --- a/include/libssh/wrapper.h +++ b/include/libssh/wrapper.h @@ -53,6 +53,9 @@ void sha1(unsigned char *digest,int len,unsigned char *hash); void sha256(unsigned char *digest, int len, unsigned char *hash); void evp(int nid, unsigned char *digest, int len, unsigned char *hash, unsigned int *hlen); +EVPCTX evp_init(int nid); +void evp_update(EVPCTX ctx, const void *data, unsigned long len); +void evp_final(EVPCTX ctx, unsigned char *md, unsigned int *mdlen); ssh_mac_ctx ssh_mac_ctx_init(enum ssh_mac_e type); void ssh_mac_update(ssh_mac_ctx ctx, const void *data, unsigned long len); |
