diff options
author | Jeremy Allison <jra@samba.org> | 1997-09-18 19:56:57 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1997-09-18 19:56:57 +0000 |
commit | 501755a87c81efd23c779f9819fd134b2831963b (patch) | |
tree | a0117769b8e276f48d3978ba1dfaff0514ccedaf /source3/arcfour.h | |
parent | 563cf6f4aadfb359bdc52e18c08994cb9da4d4b0 (diff) | |
download | samba-501755a87c81efd23c779f9819fd134b2831963b.tar.gz samba-501755a87c81efd23c779f9819fd134b2831963b.tar.bz2 samba-501755a87c81efd23c779f9819fd134b2831963b.zip |
Added arcfour code needed for SMB password changing.
Jeremy (jallison@whistle.com)
(This used to be commit 8bc3d13b3d66fc533d5bc6abf3fc9d5c67d0f286)
Diffstat (limited to 'source3/arcfour.h')
-rw-r--r-- | source3/arcfour.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/source3/arcfour.h b/source3/arcfour.h new file mode 100644 index 0000000000..9e724fcda5 --- /dev/null +++ b/source3/arcfour.h @@ -0,0 +1,35 @@ +#ifndef _ARC4_H_ +#define _ARC4_H_ + +/* + Unix SMB/Netbios implementation. + Version 1.9. + + a implementation of arcfour designed for use in the + SMB password change protocol based on the description + in 'Applied Cryptography', 2nd Edition. + + Copyright (C) Jeremy Allison 1997 + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. +*/ + +typedef struct { + unsigned char s_box[256]; + unsigned char index_i; + unsigned char index_j; +} arc4_key; + +#endif /* _ARC4_H_ */ |