summaryrefslogtreecommitdiff
path: root/source3/arcfour.h
diff options
context:
space:
mode:
Diffstat (limited to 'source3/arcfour.h')
-rw-r--r--source3/arcfour.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/arcfour.h b/source3/arcfour.h
index 9e724fcda5..34a4e8f91b 100644
--- a/source3/arcfour.h
+++ b/source3/arcfour.h
@@ -32,4 +32,8 @@ typedef struct {
unsigned char index_j;
} arc4_key;
+extern void set_arc4_key(unsigned char *data, int key_length, arc4_key *arckey);
+extern void arc4(arc4_key *arckey, unsigned char *data_in,
+ unsigned char *data_out, int length);
+
#endif /* _ARC4_H_ */