VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common/libzip/zip_fclose.c
blob: 6eb9dc910e2a14bd16e265ca90b65dbd0216d71d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
  zip_fclose.c -- close file in zip archive
  Copyright (C) 1999-2019 Dieter Baron and Thomas Klausner

  This file is part of libzip, a library to manipulate ZIP archives.
  The authors can be contacted at <libzip@nih.at>

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
  1. Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in
     the documentation and/or other materials provided with the
     distribution.
  3. The names of the authors may not be used to endorse or promote
     products derived from this software without specific prior
     written permission.

  THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


#include <stdlib.h>

#include "zipint.h"


ZIP_EXTERN int
zip_fclose(zip_file_t *zf) {
    int ret;

    if (zf->src)
	zip_source_free(zf->src);

    ret = 0;
    if (zf->error.zip_err)
	ret = zf->error.zip_err;

    zip_error_fini(&zf->error);
    free(zf);
    return ret;
}
n class="p">]; uint8 buf[BLAKE2S_BLOCKBYTES]; size_t buflen; size_t outlen; uint8 last_node; } blake2s_state; #ifdef TC_WINDOWS_BOOT #pragma pack(1) #endif BLAKE2_PACKED(struct blake2s_param__ { uint8 digest_length; /* 1 */ uint8 key_length; /* 2 */ uint8 fanout; /* 3 */ uint8 depth; /* 4 */ uint32 leaf_length; /* 8 */ uint32 node_offset; /* 12 */ uint16 xof_length; /* 14 */ uint8 node_depth; /* 15 */ uint8 inner_length; /* 16 */ /* uint8 reserved[0]; */ uint8 salt[BLAKE2S_SALTBYTES]; /* 24 */ uint8 personal[BLAKE2S_PERSONALBYTES]; /* 32 */ }); #ifdef TC_WINDOWS_BOOT #pragma pack() #endif typedef struct blake2s_param__ blake2s_param; /* Padded structs result in a compile-time error */ enum { BLAKE2_DUMMY_1 = 1/(int)(sizeof(blake2s_param) == BLAKE2S_OUTBYTES) }; /* Streaming API */ void blake2s_init( blake2s_state *S ); void blake2s_init_param( blake2s_state *S, const blake2s_param *P ); void blake2s_update( blake2s_state *S, const void *in, size_t inlen ); int blake2s_final( blake2s_state *S, unsigned char *out ); /* Simple API */ int blake2s( void *out, const void *in, size_t inlen ); #if defined(__cplusplus) } #endif #endif