des_crypt.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * @(#)des_crypt.h 2.1 88/08/11 4.0 RPCSRC; from 1.4 88/02/08 (C) 1986 SMI
  3. *
  4. * des_crypt.h, des library routine interface
  5. * Copyright (C) 1986, Sun Microsystems, Inc.
  6. */
  7. /*
  8. * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  9. * unrestricted use provided that this legend is included on all tape
  10. * media and as a part of the software program in whole or part. Users
  11. * may copy or modify Sun RPC without charge, but are not authorized
  12. * to license or distribute it to anyone else except as part of a product or
  13. * program developed by the user.
  14. *
  15. * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  16. * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  17. * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  18. *
  19. * Sun RPC is provided with no support and without any obligation on the
  20. * part of Sun Microsystems, Inc. to assist in its use, correction,
  21. * modification or enhancement.
  22. *
  23. * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  24. * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  25. * OR ANY PART THEREOF.
  26. *
  27. * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  28. * or profits or other special, indirect and consequential damages, even if
  29. * Sun has been advised of the possibility of such damages.
  30. *
  31. * Sun Microsystems, Inc.
  32. * 2550 Garcia Avenue
  33. * Mountain View, California 94043
  34. */
  35. #ifndef __DES_CRYPT_H__
  36. #define __DES_CRYPT_H__ 1
  37. #include <features.h>
  38. __BEGIN_DECLS
  39. #define DES_MAXDATA 8192 /* max bytes encrypted in one call */
  40. #define DES_DIRMASK (1 << 0)
  41. #define DES_ENCRYPT (0*DES_DIRMASK) /* Encrypt */
  42. #define DES_DECRYPT (1*DES_DIRMASK) /* Decrypt */
  43. #define DES_DEVMASK (1 << 1)
  44. #define DES_HW (0*DES_DEVMASK) /* Use hardware device */
  45. #define DES_SW (1*DES_DEVMASK) /* Use software device */
  46. #define DESERR_NONE 0 /* succeeded */
  47. #define DESERR_NOHWDEVICE 1 /* succeeded, but hw device not available */
  48. #define DESERR_HWERROR 2 /* failed, hardware/driver error */
  49. #define DESERR_BADPARAM 3 /* failed, bad parameter to call */
  50. #define DES_FAILED(err) \
  51. ((err) > DESERR_NOHWDEVICE)
  52. /*
  53. * cbc_crypt()
  54. * ecb_crypt()
  55. *
  56. * Encrypt (or decrypt) len bytes of a buffer buf.
  57. * The length must be a multiple of eight.
  58. * The key should have odd parity in the low bit of each byte.
  59. * ivec is the input vector, and is updated to the new one (cbc only).
  60. * The mode is created by oring together the appropriate parameters.
  61. * DESERR_NOHWDEVICE is returned if DES_HW was specified but
  62. * there was no hardware to do it on (the data will still be
  63. * encrypted though, in software).
  64. */
  65. /*
  66. * Cipher Block Chaining mode
  67. */
  68. extern int cbc_crypt (char *__key, char *__buf, unsigned __len,
  69. unsigned __mode, char *__ivec) __THROW;
  70. /*
  71. * Electronic Code Book mode
  72. */
  73. extern int ecb_crypt (char *__key, char *__buf, unsigned __len,
  74. unsigned __mode) __THROW;
  75. /*
  76. * Set des parity for a key.
  77. * DES parity is odd and in the low bit of each byte
  78. */
  79. extern void des_setparity (char *__key) __THROW;
  80. __END_DECLS
  81. #endif