scryptenc.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*-
  2. * Copyright 2009 Colin Percival
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  18. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. * SUCH DAMAGE.
  25. *
  26. * This file was originally written by Colin Percival as part of the Tarsnap
  27. * online backup system.
  28. */
  29. #ifndef _SCRYPTENC_H_
  30. #define _SCRYPTENC_H_
  31. #include <stdint.h>
  32. #include <stdio.h>
  33. /**
  34. * The parameters maxmem, maxmemfrac, and maxtime used by all of these
  35. * functions are defined as follows:
  36. * maxmem - maximum number of bytes of storage to use for V array (which is
  37. * by far the largest consumer of memory). If this value is set to 0, no
  38. * maximum will be enforced; any other value less than 1 MiB will be
  39. * treated as 1 MiB.
  40. * maxmemfrac - maximum fraction of available storage to use for the V array,
  41. * where "available storage" is defined as the minimum out of the
  42. * RLIMIT_AS, RLIMIT_DATA. and RLIMIT_RSS resource limits (if any are
  43. * set). If this value is set to 0 or more than 0.5 it will be treated
  44. * as 0.5; and this value will never cause a limit of less than 1 MiB to
  45. * be enforced.
  46. * maxtime - maximum amount of CPU time to spend computing the derived keys,
  47. * in seconds. This limit is only approximately enforced; the CPU
  48. * performance is estimated and parameter limits are chosen accordingly.
  49. * For the encryption functions, the parameters to the scrypt key derivation
  50. * function are chosen to make the key as strong as possible subject to the
  51. * specified limits; for the decryption functions, the parameters used are
  52. * compared to the computed limits and an error is returned if decrypting
  53. * the data would take too much memory or CPU time.
  54. */
  55. /**
  56. * Return codes from scrypt(enc|dec)_(buf|file):
  57. * 0 success
  58. * 1 getrlimit or sysctl(hw.usermem) failed
  59. * 2 clock_getres or clock_gettime failed
  60. * 3 error computing derived key
  61. * 4 could not read salt from /dev/urandom
  62. * 5 error in OpenSSL
  63. * 6 malloc failed
  64. * 7 data is not a valid scrypt-encrypted block
  65. * 8 unrecognized scrypt format
  66. * 9 decrypting file would take too much memory
  67. * 10 decrypting file would take too long
  68. * 11 password is incorrect
  69. * 12 error writing output file
  70. * 13 error reading input file
  71. */
  72. /**
  73. * scryptenc_buf(inbuf, inbuflen, outbuf, passwd, passwdlen,
  74. * maxmem, maxmemfrac, maxtime):
  75. * Encrypt inbuflen bytes from inbuf, writing the resulting inbuflen + 128
  76. * bytes to outbuf.
  77. */
  78. int scryptenc_buf(const uint8_t *, size_t, uint8_t *,
  79. const uint8_t *, size_t, size_t, double, double);
  80. /**
  81. * scryptdec_buf(inbuf, inbuflen, outbuf, outlen, passwd, passwdlen,
  82. * maxmem, maxmemfrac, maxtime):
  83. * Decrypt inbuflen bytes fro inbuf, writing the result into outbuf and the
  84. * decrypted data length to outlen. The allocated length of outbuf must
  85. * be at least inbuflen.
  86. */
  87. int scryptdec_buf(const uint8_t *, size_t, uint8_t *, size_t *,
  88. const uint8_t *, size_t, size_t, double, double);
  89. /**
  90. * scryptenc_file(infile, outfile, passwd, passwdlen,
  91. * maxmem, maxmemfrac, maxtime):
  92. * Read a stream from infile and encrypt it, writing the resulting stream to
  93. * outfile.
  94. */
  95. int scryptenc_file(FILE *, FILE *, const uint8_t *, size_t,
  96. size_t, double, double);
  97. /**
  98. * scryptdec_file(infile, outfile, passwd, passwdlen,
  99. * maxmem, maxmemfrac, maxtime):
  100. * Read a stream from infile and decrypt it, writing the resulting stream to
  101. * outfile.
  102. */
  103. int scryptdec_file(FILE *, FILE *, const uint8_t *, size_t,
  104. size_t, double, double);
  105. #endif /* !_SCRYPTENC_H_ */