Searched refs:cryptstate_T (Results 1 – 9 of 9) sorted by relevance
| /vim-8.2.3635/src/proto/ |
| H A D | crypt.pro | 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); [all …]
|
| H A D | crypt_zip.pro | 2 int crypt_zip_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int … 3 void crypt_zip_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last); 4 void crypt_zip_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
|
| H A D | blowfish.pro | 2 void crypt_blowfish_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last); 3 void crypt_blowfish_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last); 4 int crypt_blowfish_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed,…
|
| /vim-8.2.3635/src/ |
| H A D | crypt.c | 298 cryptstate_T * 307 cryptstate_T *state = ALLOC_ONE(cryptstate_T); in crypt_create() 327 cryptstate_T * 350 cryptstate_T * 357 cryptstate_T *state; in crypt_create_from_file() 389 cryptstate_T * 401 cryptstate_T *state; in crypt_create_for_writing() 465 cryptstate_T *state, in crypt_encode_alloc() 494 cryptstate_T *state, in crypt_decode_alloc() 523 cryptstate_T *state, in crypt_encode() [all …]
|
| H A D | crypt_zip.c | 83 cryptstate_T *state, in crypt_zip_init() 114 cryptstate_T *state, in crypt_zip_encode() 138 cryptstate_T *state, in crypt_zip_decode()
|
| H A D | blowfish.c | 596 cryptstate_T *state, in crypt_blowfish_encode() 620 cryptstate_T *state, in crypt_blowfish_decode() 640 cryptstate_T *state, in crypt_blowfish_init()
|
| H A D | memline.c | 262 static cryptstate_T *ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading); 5357 cryptstate_T *state; in ml_encrypt_data() 5402 cryptstate_T *state; in ml_decrypt_data() 5428 static cryptstate_T *
|
| H A D | structs.h | 2538 } cryptstate_T; typedef 3145 cryptstate_T *b_cryptstate; // Encryption state while reading or writing
|
| H A D | undo.c | 95 cryptstate_T *bi_state;
|