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.

seed.h 3.6 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Copyright 2007-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. /*
  10. * Copyright (c) 2007 KISA(Korea Information Security Agency). All rights reserved.
  11. *
  12. * Redistribution and use in source and binary forms, with or without
  13. * modification, are permitted provided that the following conditions
  14. * are met:
  15. * 1. Redistributions of source code must retain the above copyright
  16. * notice, this list of conditions and the following disclaimer.
  17. * 2. Neither the name of author nor the names of its contributors may
  18. * be used to endorse or promote products derived from this software
  19. * without specific prior written permission.
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  22. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
  25. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. */
  33. #ifndef OPENSSL_SEED_H
  34. #define OPENSSL_SEED_H
  35. #pragma once
  36. #include <openssl/macros.h>
  37. #ifndef OPENSSL_NO_DEPRECATED_3_0
  38. #define HEADER_SEED_H
  39. #endif
  40. #include <openssl/opensslconf.h>
  41. #ifndef OPENSSL_NO_SEED
  42. #include <openssl/e_os2.h>
  43. #include <openssl/crypto.h>
  44. #include <sys/types.h>
  45. #ifdef __cplusplus
  46. extern "C"
  47. {
  48. #endif
  49. #define SEED_BLOCK_SIZE 16
  50. #define SEED_KEY_LENGTH 16
  51. #ifndef OPENSSL_NO_DEPRECATED_3_0
  52. /* look whether we need 'long' to get 32 bits */
  53. #ifdef AES_LONG
  54. #ifndef SEED_LONG
  55. #define SEED_LONG 1
  56. #endif
  57. #endif
  58. typedef struct seed_key_st
  59. {
  60. #ifdef SEED_LONG
  61. unsigned long data[32];
  62. #else
  63. unsigned int data[32];
  64. #endif
  65. } SEED_KEY_SCHEDULE;
  66. #endif /* OPENSSL_NO_DEPRECATED_3_0 */
  67. #ifndef OPENSSL_NO_DEPRECATED_3_0
  68. OSSL_DEPRECATEDIN_3_0
  69. void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], SEED_KEY_SCHEDULE* ks);
  70. OSSL_DEPRECATEDIN_3_0
  71. void SEED_encrypt(const unsigned char s[SEED_BLOCK_SIZE], unsigned char d[SEED_BLOCK_SIZE], const SEED_KEY_SCHEDULE* ks);
  72. OSSL_DEPRECATEDIN_3_0
  73. void SEED_decrypt(const unsigned char s[SEED_BLOCK_SIZE], unsigned char d[SEED_BLOCK_SIZE], const SEED_KEY_SCHEDULE* ks);
  74. OSSL_DEPRECATEDIN_3_0
  75. void SEED_ecb_encrypt(const unsigned char* in, unsigned char* out, const SEED_KEY_SCHEDULE* ks, int enc);
  76. OSSL_DEPRECATEDIN_3_0
  77. void SEED_cbc_encrypt(const unsigned char* in, unsigned char* out, size_t len, const SEED_KEY_SCHEDULE* ks, unsigned char ivec[SEED_BLOCK_SIZE], int enc);
  78. OSSL_DEPRECATEDIN_3_0
  79. void SEED_cfb128_encrypt(const unsigned char* in, unsigned char* out, size_t len, const SEED_KEY_SCHEDULE* ks, unsigned char ivec[SEED_BLOCK_SIZE], int* num, int enc);
  80. OSSL_DEPRECATEDIN_3_0
  81. void SEED_ofb128_encrypt(const unsigned char* in, unsigned char* out, size_t len, const SEED_KEY_SCHEDULE* ks, unsigned char ivec[SEED_BLOCK_SIZE], int* num);
  82. #endif
  83. #ifdef __cplusplus
  84. }
  85. #endif
  86. #endif
  87. #endif