null_cipher.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * null-cipher.h
  3. *
  4. * header file for the null cipher
  5. *
  6. *
  7. * David A. McGrew
  8. * Cisco Systems, Inc.
  9. */
  10. /*
  11. *
  12. * Copyright (c) 2001-2006, Cisco Systems, Inc.
  13. * All rights reserved.
  14. *
  15. * Redistribution and use in source and binary forms, with or without
  16. * modification, are permitted provided that the following conditions
  17. * are met:
  18. *
  19. * Redistributions of source code must retain the above copyright
  20. * notice, this list of conditions and the following disclaimer.
  21. *
  22. * Redistributions in binary form must reproduce the above
  23. * copyright notice, this list of conditions and the following
  24. * disclaimer in the documentation and/or other materials provided
  25. * with the distribution.
  26. *
  27. * Neither the name of the Cisco Systems, Inc. nor the names of its
  28. * contributors may be used to endorse or promote products derived
  29. * from this software without specific prior written permission.
  30. *
  31. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  32. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  33. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  34. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  35. * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  36. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  37. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  38. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  39. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  40. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  41. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  42. * OF THE POSSIBILITY OF SUCH DAMAGE.
  43. *
  44. */
  45. #ifndef NULL_CIPHER_H
  46. #define NULL_CIPHER_H
  47. #include "datatypes.h"
  48. #include "cipher.h"
  49. typedef struct {
  50. char foo ;/* empty, for now */
  51. } null_cipher_ctx_t;
  52. /*
  53. * none of these functions do anything (though future versions may keep
  54. * track of bytes encrypted, number of instances, and/or other info).
  55. */
  56. err_status_t
  57. null_cipher_init(null_cipher_ctx_t *c, const uint8_t *key, int key_len);
  58. err_status_t
  59. null_cipher_set_segment(null_cipher_ctx_t *c,
  60. unsigned long segment_index);
  61. err_status_t
  62. null_cipher_encrypt(null_cipher_ctx_t *c,
  63. unsigned char *buf, unsigned int *bytes_to_encr);
  64. err_status_t
  65. null_cipher_encrypt_aligned(null_cipher_ctx_t *c,
  66. unsigned char *buf, int bytes_to_encr);
  67. #endif /* NULL_CIPHER_H */