Scrypt.h 236 B

123456789101112131415
  1. //
  2. // Scrypt.h
  3. // Threema
  4. //
  5. // Copyright © 2018 Threema GmbH. All rights reserved.
  6. //
  7. #ifndef Scrypt_h
  8. #define Scrypt_h
  9. #include <stdio.h>
  10. int getDerivedKey(char password[], char salt[], uint8_t out[64]);
  11. #endif /* Scrypt_h */