diff options
author | Martin Kaiser <wireshark@kaiser.cx> | 2013-02-21 18:09:18 +0000 |
---|---|---|
committer | Martin Kaiser <wireshark@kaiser.cx> | 2013-02-21 18:09:18 +0000 |
commit | 7126d3a56b85823b4177db48061c18af927701fd (patch) | |
tree | 8c0b9483e7c852406051dcb9aad8a33017d17de1 /wsutil/wsgcrypt.h | |
parent | b9a0eaedae0e6ba719e10d2c7e1d42d484caf6c1 (diff) | |
download | wireshark-7126d3a56b85823b4177db48061c18af927701fd.tar.gz wireshark-7126d3a56b85823b4177db48061c18af927701fd.tar.bz2 wireshark-7126d3a56b85823b4177db48061c18af927701fd.zip |
add wsutil/wsgcrypt.h as a wrapper around libgcrypt's gcrypt.h
(not used for now)
svn path=/trunk/; revision=47801
Diffstat (limited to 'wsutil/wsgcrypt.h')
-rw-r--r-- | wsutil/wsgcrypt.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/wsutil/wsgcrypt.h b/wsutil/wsgcrypt.h new file mode 100644 index 0000000000..a92b5c977c --- /dev/null +++ b/wsutil/wsgcrypt.h @@ -0,0 +1,35 @@ +/* wsgcrypt.h + * + * Wrapper around libgcrypt's include file gcrypt.h. + * + * $Id$ + * + * Wireshark - Network traffic analyzer + * By Gerald Combs <gerald@wireshark.org> + * Copyright 2007 Gerald Combs + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef __WSGCRYPT_H__ +#define __WSGCRYPT_H__ + +#ifdef HAVE_LIBGCRYPT + +#include <gcrypt.h> + +#endif /* HAVE_LIBGRYPT */ + +#endif /* __WSGCRYPT_H__ */ |