You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

cast.h 1.9 kB

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