Guile: Fix `x509-certificate-dn-oid' and related functions.
[gnutls.git] / lib / gnutls_compress.c
blob9e42157d8e174edd98194767b2029a1e1e783b72
1 /*
2 * Copyright (C) 2000, 2004, 2005 Free Software Foundation
4 * Author: Nikos Mavroyanopoulos
6 * This file is part of GNUTLS.
8 * The GNUTLS library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 2.1 of
11 * the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21 * USA
25 /* This file contains the functions which convert the TLS plaintext
26 * packet to TLS compressed packet.
29 #include "gnutls_int.h"
30 #include "gnutls_compress.h"
31 #include "gnutls_errors.h"
32 #include "gnutls_compress_int.h"
34 /* These functions allocate the return value internally
36 int
37 _gnutls_m_plaintext2compressed (gnutls_session_t session,
38 gnutls_datum_t * compressed,
39 gnutls_datum_t plaintext)
41 int size;
42 opaque *data;
44 size =
45 _gnutls_compress (session->connection_state.write_compression_state,
46 plaintext.data, plaintext.size, &data,
47 MAX_RECORD_SEND_SIZE + 1024);
48 if (size < 0)
50 gnutls_assert ();
51 return GNUTLS_E_COMPRESSION_FAILED;
53 compressed->data = data;
54 compressed->size = size;
56 return 0;
59 int
60 _gnutls_m_compressed2plaintext (gnutls_session_t session,
61 gnutls_datum_t * plain,
62 gnutls_datum_t compressed)
64 int size;
65 opaque *data;
67 size =
68 _gnutls_decompress (session->connection_state.
69 read_compression_state, compressed.data,
70 compressed.size, &data, MAX_RECORD_RECV_SIZE);
71 if (size < 0)
73 gnutls_assert ();
74 return GNUTLS_E_DECOMPRESSION_FAILED;
76 plain->data = data;
77 plain->size = size;
79 return 0;