mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-13 14:43:46 +01:00
8184839a47
See crypto_pwbox.c for a description of the file format. There are tests for successful operation, but it still needs error-case tests.
21 lines
552 B
C
21 lines
552 B
C
#ifndef CRYPTO_PWBOX_H_INCLUDED_
|
|
#define CRYPTO_PWBOX_H_INCLUDED_
|
|
|
|
#include "torint.h"
|
|
|
|
#define UNPWBOX_OKAY 0
|
|
#define UNPWBOX_BAD_SECRET -1
|
|
#define UNPWBOX_CORRUPTED -2
|
|
|
|
int crypto_pwbox(uint8_t **out, size_t *outlen_out,
|
|
const uint8_t *inp, size_t input_len,
|
|
const char *secret, size_t secret_len,
|
|
unsigned s2k_flags);
|
|
|
|
int crypto_unpwbox(uint8_t **out, size_t *outlen_out,
|
|
const uint8_t *inp, size_t input_len,
|
|
const char *secret, size_t secret_len);
|
|
|
|
#endif
|
|
|