home *** CD-ROM | disk | FTP | other *** search
- #ifndef __DESCRIP_LOADED__
- #define __DESCRIP_LOADED__
-
- #include "mytypes.h"
-
- /* Encryption method codes */
-
- #define UAIC_AD_II 0 /* AUTODIN-II 32 bit crc code */
- #define UAIC_PURDY 1 /* Purdy polynomial over salted input */
- #define UAIC_PURDY_V 2 /* Purdy polynomial + variable length username */
- #define UAIC_PURDY_S 3 /* PURDY_V + additional bit rotation */
-
- /*
- * (Based on the VAX Procedure Calling and Condition Handling Standard,
- * Revision 9.4 [13 March 1984];
- * see the "Introduction to VMS System Routines" manual for further
- * information.)
- */
-
- /*
- * Fixed-Length Descriptor:
- */
-
- typedef struct {
-
- int dscw_length; /* length of data item in bytes */
- char *dsca_pointer; /* address of first byte of data */
- /* storage */
- } dscdescriptor;
-
- void lgihpwd(dscdescriptor *,dscdescriptor *,int,word,dscdescriptor *);
-
- #endif /* __DESCRIP_LOADED__ */
-