diff options
| author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-05-31 13:22:09 +0200 |
|---|---|---|
| committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-06-17 20:47:38 +0200 |
| commit | 1b3ea65db78ef3dcc8200812117171531c62fe8b (patch) | |
| tree | 54f66c970e6376ebda7a923d7f561702e2b19d8c /examples/Makefile | |
| parent | d3c211c2e46125ea98a45f2dad9af4669c347fa6 (diff) | |
| download | cryptodev-linux-1b3ea65db78ef3dcc8200812117171531c62fe8b.tar.gz cryptodev-linux-1b3ea65db78ef3dcc8200812117171531c62fe8b.tar.xz cryptodev-linux-1b3ea65db78ef3dcc8200812117171531c62fe8b.zip | |
Added ncr_key_import/export, generate and info. Those work with secret keys.
Added test program for those.
Diffstat (limited to 'examples/Makefile')
| -rw-r--r-- | examples/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/Makefile b/examples/Makefile index 3190c4a..a3fe416 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,14 +1,16 @@ KERNEL_DIR ?= /lib/modules/$(shell uname -r)/build -hostprogs := cipher hmac new +hostprogs := cipher hmac new new-key example-cipher-objs := cipher.o example-hmac-objs := hmac.o new-objs := new.o +new-key-objs := new-key.c check: $(hostprogs) + ./new-key ./new ./cipher ./hmac clean: - rm -f *.o *~ hmac cipher new + rm -f *.o *~ hmac cipher new new-key |
