cast.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef OPENSSL_CAST_H
  10. # define OPENSSL_CAST_H
  11. # pragma once
  12. # include <openssl/macros.h>
  13. # ifndef OPENSSL_NO_DEPRECATED_3_0
  14. # define HEADER_CAST_H
  15. # endif
  16. # include <openssl/opensslconf.h>
  17. # ifndef OPENSSL_NO_CAST
  18. # ifdef __cplusplus
  19. extern "C" {
  20. # endif
  21. # define CAST_ENCRYPT 1
  22. # define CAST_DECRYPT 0
  23. # define CAST_LONG unsigned int
  24. # define CAST_BLOCK 8
  25. # define CAST_KEY_LENGTH 16
  26. typedef struct cast_key_st {
  27. CAST_LONG data[32];
  28. int short_key; /* Use reduced rounds for short key */
  29. } CAST_KEY;
  30. void CAST_set_key(CAST_KEY *key, int len, const unsigned char *data);
  31. void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out,
  32. const CAST_KEY *key, int enc);
  33. void CAST_encrypt(CAST_LONG *data, const CAST_KEY *key);
  34. void CAST_decrypt(CAST_LONG *data, const CAST_KEY *key);
  35. void CAST_cbc_encrypt(const unsigned char *in, unsigned char *out,
  36. long length, const CAST_KEY *ks, unsigned char *iv,
  37. int enc);
  38. void CAST_cfb64_encrypt(const unsigned char *in, unsigned char *out,
  39. long length, const CAST_KEY *schedule,
  40. unsigned char *ivec, int *num, int enc);
  41. void CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out,
  42. long length, const CAST_KEY *schedule,
  43. unsigned char *ivec, int *num);
  44. # ifdef __cplusplus
  45. }
  46. # endif
  47. # endif
  48. #endif