xref: /aosp_15_r20/external/boringssl/src/rust/bssl-sys/rust_wrapper.c (revision 8fb009dc861624b67b6cdb62ea21f0f22d0c584b)
1 /* Copyright (c) 2022, Google Inc.
2  *
3  * Permission to use, copy, modify, and/or distribute this software for any
4  * purpose with or without fee is hereby granted, provided that the above
5  * copyright notice and this permission notice appear in all copies.
6  *
7  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14 
15 #include "rust_wrapper.h"
16 
17 
ERR_GET_LIB_RUST(uint32_t packed_error)18 int ERR_GET_LIB_RUST(uint32_t packed_error) {
19   return ERR_GET_LIB(packed_error);
20 }
21 
ERR_GET_REASON_RUST(uint32_t packed_error)22 int ERR_GET_REASON_RUST(uint32_t packed_error) {
23   return ERR_GET_REASON(packed_error);
24 }
25 
ERR_GET_FUNC_RUST(uint32_t packed_error)26 int ERR_GET_FUNC_RUST(uint32_t packed_error) {
27   return ERR_GET_FUNC(packed_error);
28 }
29 
CBS_init_RUST(CBS * cbs,const uint8_t * data,size_t len)30 void CBS_init_RUST(CBS *cbs, const uint8_t *data, size_t len) {
31   CBS_init(cbs, data, len);
32 }
33 
CBS_len_RUST(const CBS * cbs)34 size_t CBS_len_RUST(const CBS *cbs) {
35   return CBS_len(cbs);
36 }
37