blob: 718c1a50dbe245995e1baf334ade7d72788eba6c [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
David Garcia Quintas3598d442016-03-15 14:53:05 -07003 * Copyright 2015-2016, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
Craig Tiller9a4dddd2016-03-25 17:08:13 -070034#ifndef GRPC_CORE_LIB_TSI_FAKE_TRANSPORT_SECURITY_H
35#define GRPC_CORE_LIB_TSI_FAKE_TRANSPORT_SECURITY_H
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080036
37#include "src/core/tsi/transport_security_interface.h"
38
39#ifdef __cplusplus
Craig Tillera82950e2015-09-22 12:33:20 -070040extern "C" {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080041#endif
42
43/* Value for the TSI_CERTIFICATE_TYPE_PEER_PROPERTY property for FAKE certs. */
44#define TSI_FAKE_CERTIFICATE_TYPE "FAKE"
45
46/* Creates a fake handshaker that will create a fake frame protector.
47
48 No cryptography is performed in these objects. They just simulate handshake
49 messages going back and forth for the handshaker and do some framing on
50 cleartext data for the protector. */
Craig Tillera82950e2015-09-22 12:33:20 -070051tsi_handshaker *tsi_create_fake_handshaker(int is_client);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080052
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080053/* Creates a protector directly without going through the handshake phase. */
Craig Tillera82950e2015-09-22 12:33:20 -070054tsi_frame_protector *tsi_create_fake_protector(
55 size_t *max_protected_frame_size);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080056
57#ifdef __cplusplus
58}
59#endif
60
Craig Tiller9a4dddd2016-03-25 17:08:13 -070061#endif /* GRPC_CORE_LIB_TSI_FAKE_TRANSPORT_SECURITY_H */