seed.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * Copyright 2007-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. /*
  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. # if !OPENSSL_API_3
  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. #ifdef __cplusplus
  45. extern "C" {
  46. #endif
  47. /* look whether we need 'long' to get 32 bits */
  48. # ifdef AES_LONG
  49. # ifndef SEED_LONG
  50. # define SEED_LONG 1
  51. # endif
  52. # endif
  53. # include <sys/types.h>
  54. # define SEED_BLOCK_SIZE 16
  55. # define SEED_KEY_LENGTH 16
  56. typedef struct seed_key_st {
  57. # ifdef SEED_LONG
  58. unsigned long data[32];
  59. # else
  60. unsigned int data[32];
  61. # endif
  62. } SEED_KEY_SCHEDULE;
  63. void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH],
  64. SEED_KEY_SCHEDULE *ks);
  65. void SEED_encrypt(const unsigned char s[SEED_BLOCK_SIZE],
  66. unsigned char d[SEED_BLOCK_SIZE],
  67. const SEED_KEY_SCHEDULE *ks);
  68. void SEED_decrypt(const unsigned char s[SEED_BLOCK_SIZE],
  69. unsigned char d[SEED_BLOCK_SIZE],
  70. const SEED_KEY_SCHEDULE *ks);
  71. void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out,
  72. const SEED_KEY_SCHEDULE *ks, int enc);
  73. void SEED_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t len,
  74. const SEED_KEY_SCHEDULE *ks,
  75. unsigned char ivec[SEED_BLOCK_SIZE], int enc);
  76. void SEED_cfb128_encrypt(const unsigned char *in, unsigned char *out,
  77. size_t len, const SEED_KEY_SCHEDULE *ks,
  78. unsigned char ivec[SEED_BLOCK_SIZE], int *num,
  79. int enc);
  80. void SEED_ofb128_encrypt(const unsigned char *in, unsigned char *out,
  81. size_t len, const SEED_KEY_SCHEDULE *ks,
  82. unsigned char ivec[SEED_BLOCK_SIZE], int *num);
  83. # ifdef __cplusplus
  84. }
  85. # endif
  86. # endif
  87. #endif