Lines Matching refs:cryptstate_T
4 int crypt_works_inplace(cryptstate_T *state);
11 cryptstate_T *crypt_create(int method_nr, char_u *key, char_u *salt, int salt_len, char_u *seed, in…
12 cryptstate_T *crypt_create_from_header(int method_nr, char_u *key, char_u *header);
13 cryptstate_T *crypt_create_from_file(FILE *fp, char_u *key);
14 cryptstate_T *crypt_create_for_writing(int method_nr, char_u *key, char_u **header, int *header_len…
15 void crypt_free_state(cryptstate_T *state);
16 long crypt_encode_alloc(cryptstate_T *state, char_u *from, size_t len, char_u **newptr, int last);
17 long crypt_decode_alloc(cryptstate_T *state, char_u *ptr, long len, char_u **newptr, int last);
18 void crypt_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
19 void crypt_encode_inplace(cryptstate_T *state, char_u *buf, size_t len, int last);
20 void crypt_decode_inplace(cryptstate_T *state, char_u *buf, size_t len, int last);
26 int crypt_sodium_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, i…
27 long crypt_sodium_buffer_encode(cryptstate_T *state, char_u *from, size_t len, char_u **buf_out, in…
28 long crypt_sodium_buffer_decode(cryptstate_T *state, char_u *from, size_t len, char_u **buf_out, in…