summaryrefslogtreecommitdiff
path: root/cipher/arcfour.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2001-05-31 14:16:54 +0000
committerWerner Koch <wk@gnupg.org>2001-05-31 14:16:54 +0000
commit8bfa2df2135a1bd9823067debf0c8799bac4a936 (patch)
treeb91075d39633de4f762dca14ae2323053ded62c8 /cipher/arcfour.c
parent08e3fbb986bed2f39cc5dca806faca9654c3a6df (diff)
downloadlibgcrypt-8bfa2df2135a1bd9823067debf0c8799bac4a936.tar.gz
The first libgcrypt only release.
Diffstat (limited to 'cipher/arcfour.c')
-rw-r--r--cipher/arcfour.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cipher/arcfour.c b/cipher/arcfour.c
index 18e35fff..a915cb79 100644
--- a/cipher/arcfour.c
+++ b/cipher/arcfour.c
@@ -1,5 +1,5 @@
/* arcfour.c - The arcfour stream cipher
- * Copyright (C) 2000 Free Software Foundation, Inc.
+ * Copyright (C) 2000, 2001 Free Software Foundation, Inc.
*
* For a description of the algorithm, see:
* Bruce Schneier: Applied Cryptography. John Wiley & Sons, 1996.
@@ -135,7 +135,7 @@ selftest(void)
* we have redesign the interface.
*/
const char *
-arcfour_get_info( int algo, size_t *keylen, size_t *blocksize,
+_gcry_arcfour_get_info( int algo, size_t *keylen, size_t *blocksize,
size_t *contextsize,
int (**r_setkey)( void *c, byte *key, unsigned keylen ),
void (**r_stencrypt)( void *c, byte *outbuf,
@@ -147,7 +147,7 @@ arcfour_get_info( int algo, size_t *keylen, size_t *blocksize,
*keylen = 128; /* arbitrary value */
*blocksize = 1;
*contextsize = sizeof(ARCFOUR_context);
- *(int (**)(ARCFOUR_context*, byte*, unsigned))r_setkey
+ *(int (**)(ARCFOUR_context*, const byte*, unsigned))r_setkey
= arcfour_setkey;
*(void (**)(ARCFOUR_context*, byte*, const byte*, unsigned))r_stencrypt
= encrypt_stream;