cast.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Copyright 1995-2020 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_BLOCK 8
  22. # define CAST_KEY_LENGTH 16
  23. # ifndef OPENSSL_NO_DEPRECATED_3_0
  24. # define CAST_ENCRYPT 1
  25. # define CAST_DECRYPT 0
  26. # define CAST_LONG unsigned int
  27. typedef struct cast_key_st {
  28. CAST_LONG data[32];
  29. int short_key; /* Use reduced rounds for short key */
  30. } CAST_KEY;
  31. # endif /* OPENSSL_NO_DEPRECATED_3_0 */
  32. # ifndef OPENSSL_NO_DEPRECATED_3_0
  33. OSSL_DEPRECATEDIN_3_0
  34. void CAST_set_key(CAST_KEY *key, int len, const unsigned char *data);
  35. OSSL_DEPRECATEDIN_3_0
  36. void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out,
  37. const CAST_KEY *key, int enc);
  38. OSSL_DEPRECATEDIN_3_0
  39. void CAST_encrypt(CAST_LONG *data, const CAST_KEY *key);
  40. OSSL_DEPRECATEDIN_3_0
  41. void CAST_decrypt(CAST_LONG *data, const CAST_KEY *key);
  42. OSSL_DEPRECATEDIN_3_0
  43. void CAST_cbc_encrypt(const unsigned char *in, unsigned char *out,
  44. long length, const CAST_KEY *ks, unsigned char *iv,
  45. int enc);
  46. OSSL_DEPRECATEDIN_3_0
  47. void CAST_cfb64_encrypt(const unsigned char *in, unsigned char *out,
  48. long length, const CAST_KEY *schedule,
  49. unsigned char *ivec, int *num, int enc);
  50. OSSL_DEPRECATEDIN_3_0
  51. void CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out,
  52. long length, const CAST_KEY *schedule,
  53. unsigned char *ivec, int *num);
  54. # endif
  55. # ifdef __cplusplus
  56. }
  57. # endif
  58. # endif
  59. #endif