diff options
author | Werner Koch <wk@gnupg.org> | 1999-02-10 17:22:40 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1999-02-10 17:22:40 +0100 |
commit | 9a4f506a18ed04f5dbd69d74ec0c35ade79e357a (patch) | |
tree | 07178f77cb23862b045b0edf8a2bc5ce188432cd /cipher/tiger.c | |
parent | See ChangeLog: Sun Jan 24 18:16:26 CET 1999 Werner Koch (diff) | |
download | gnupg2-9a4f506a18ed04f5dbd69d74ec0c35ade79e357a.tar.xz gnupg2-9a4f506a18ed04f5dbd69d74ec0c35ade79e357a.zip |
See ChangeLog: Wed Feb 10 17:15:39 CET 1999 Werner Koch
Diffstat (limited to 'cipher/tiger.c')
-rw-r--r-- | cipher/tiger.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cipher/tiger.c b/cipher/tiger.c index 20d17cae0..0765f0bbd 100644 --- a/cipher/tiger.c +++ b/cipher/tiger.c @@ -909,6 +909,9 @@ tiger_get_info( int algo, size_t *contextsize, +#ifndef IS_MODULE +static +#endif const char * const gnupgext_version = "TIGER ($Revision$)"; static struct { @@ -938,6 +941,9 @@ static struct { * version = interface version of the function/pointer * (currently this is 1 for all functions) */ +#ifndef IS_MODULE +static +#endif void * gnupgext_enum_func( int what, int *sequence, int *class, int *vers ) { @@ -969,5 +975,17 @@ gnupgext_enum_func( int what, int *sequence, int *class, int *vers ) return ret; } + + +#ifndef IS_MODULE +void +tiger_constructor(void) +{ + register_internal_cipher_extension( gnupgext_version, + gnupgext_enum_func ); +} +#endif + + #endif /* HAVE_U64_TYPEDEF */ |