Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ lib_LTLIBRARIES = libvdeplug_agno.la
man_MANS = libvdeplug_agno.1

libvdeplug_agno_la_SOURCES = libvdeplug_agno.c
libvdeplug_agno_la_LIBADD = -lvdeplug_mod -lssl -lcrypto
libvdeplug_agno_la_LIBADD = -lvdeplug_mod -lwolfssl
libvdeplug_agno_la_LDFLAGS = -module -avoid-version

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# vdeplug\_agno

This is a libvdeplug plugin module to add encryption to a vde connection. It is based on the openssl library.
This is a libvdeplug plugin module to add encryption to a vde connection. It is based on the [wolfSSL library](https://github.com/wolfSSL/wolfSSL).

This module of libvdeplug4 can be used in any program supporting VDE like vde\_plug, kvm, qemu, user-mode-linux and virtualbox.

## install vdeplug\_agno

Requirements: [vdeplug4](https://github.com/rd235/vdeplug4) and openssl.
Requirements: [vdeplug4](https://github.com/rd235/vdeplug4) and wolfssl.

vdeplug\_agno uses the auto-tools, so the standard procedure to build and install this vdeplug plugin module is the following:
```
Expand Down
5 changes: 3 additions & 2 deletions libvdeplug_agno.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
#include <net/if.h>
#include <net/ethernet.h>
#include <arpa/inet.h>
#include <openssl/aes.h>
#include <openssl/rand.h>
#include <wolfssl/options.h>
#include <wolfssl/openssl/aes.h>
#include <wolfssl/openssl/rand.h>
#include <libvdeplug.h>
#include <libvdeplug_mod.h>

Expand Down