aboutsummaryrefslogtreecommitdiff
path: root/src/common/key.h
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2002-11-25 01:22:34 +0000
committerRoger Dingledine <arma@torproject.org>2002-11-25 01:22:34 +0000
commit147879ab17801d44098d19ec94e705f890070a81 (patch)
treecd2e2883637efb3d6aff3d61934692210533ae35 /src/common/key.h
parentb097aa3288f6c964d86df1f765e6d07cce0ab0f7 (diff)
downloadtor-147879ab17801d44098d19ec94e705f890070a81.tar
tor-147879ab17801d44098d19ec94e705f890070a81.tar.gz
removing more unused files
svn:r141
Diffstat (limited to 'src/common/key.h')
-rw-r--r--src/common/key.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/common/key.h b/src/common/key.h
deleted file mode 100644
index ad41f1d88..000000000
--- a/src/common/key.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * key.h
- * Routines for generating key pairs and loading private keys.
- *
- * Matej Pfajfar <mp292@cam.ac.uk>
- */
-
-/*
- * Changes :
- * $Log$
- * Revision 1.1 2002/06/26 22:45:50 arma
- * Initial revision
- *
- * Revision 1.3 2002/01/26 18:50:11 mp292
- * Reviewed according to Secure-Programs-HOWTO.
- *
- * Revision 1.2 2001/12/18 10:37:47 badbytes
- * Header files now only apply if they were not previously included from somewhere else.
- *
- * Revision 1.1 2001/12/14 12:16:33 badbytes
- * Added routine for reading a private key from a file.
- *
- */
-
-#ifndef __KEY_H
-#include <openssl/rsa.h>
-
-/* read the private key in keyfile into memory */
-RSA *load_prkey(unsigned char *keyfile);
-
-#define __KEY_H
-#endif