1*5b69db07SJason Zhu /* 2*5b69db07SJason Zhu * Copyright (C) 2016 The Android Open Source Project 3*5b69db07SJason Zhu * 4*5b69db07SJason Zhu * Permission is hereby granted, free of charge, to any person 5*5b69db07SJason Zhu * obtaining a copy of this software and associated documentation 6*5b69db07SJason Zhu * files (the "Software"), to deal in the Software without 7*5b69db07SJason Zhu * restriction, including without limitation the rights to use, copy, 8*5b69db07SJason Zhu * modify, merge, publish, distribute, sublicense, and/or sell copies 9*5b69db07SJason Zhu * of the Software, and to permit persons to whom the Software is 10*5b69db07SJason Zhu * furnished to do so, subject to the following conditions: 11*5b69db07SJason Zhu * 12*5b69db07SJason Zhu * The above copyright notice and this permission notice shall be 13*5b69db07SJason Zhu * included in all copies or substantial portions of the Software. 14*5b69db07SJason Zhu * 15*5b69db07SJason Zhu * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16*5b69db07SJason Zhu * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17*5b69db07SJason Zhu * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18*5b69db07SJason Zhu * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 19*5b69db07SJason Zhu * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 20*5b69db07SJason Zhu * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 21*5b69db07SJason Zhu * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22*5b69db07SJason Zhu * SOFTWARE. 23*5b69db07SJason Zhu */ 24*5b69db07SJason Zhu 25*5b69db07SJason Zhu #ifndef LIBAVB_H_ 26*5b69db07SJason Zhu #define LIBAVB_H_ 27*5b69db07SJason Zhu 28*5b69db07SJason Zhu /* The AVB_INSIDE_LIBAVB_H preprocessor symbol is used to enforce 29*5b69db07SJason Zhu * library users to include only this file. All public interfaces, and 30*5b69db07SJason Zhu * only public interfaces, must be included here. 31*5b69db07SJason Zhu */ 32*5b69db07SJason Zhu 33*5b69db07SJason Zhu #define AVB_INSIDE_LIBAVB_H 34*5b69db07SJason Zhu #include <android_avb/avb_chain_partition_descriptor.h> 35*5b69db07SJason Zhu #include <android_avb/avb_crypto.h> 36*5b69db07SJason Zhu #include <android_avb/avb_descriptor.h> 37*5b69db07SJason Zhu #include <android_avb/avb_footer.h> 38*5b69db07SJason Zhu #include <android_avb/avb_hash_descriptor.h> 39*5b69db07SJason Zhu #include <android_avb/avb_hashtree_descriptor.h> 40*5b69db07SJason Zhu #include <android_avb/avb_kernel_cmdline_descriptor.h> 41*5b69db07SJason Zhu #include <android_avb/avb_ops.h> 42*5b69db07SJason Zhu #include <android_avb/avb_property_descriptor.h> 43*5b69db07SJason Zhu #include <android_avb/avb_slot_verify.h> 44*5b69db07SJason Zhu #include <android_avb/avb_sysdeps.h> 45*5b69db07SJason Zhu #include <android_avb/avb_util.h> 46*5b69db07SJason Zhu #include <android_avb/avb_vbmeta_image.h> 47*5b69db07SJason Zhu #include <android_avb/avb_version.h> 48*5b69db07SJason Zhu #undef AVB_INSIDE_LIBAVB_H 49*5b69db07SJason Zhu 50*5b69db07SJason Zhu #endif /* LIBAVB_H_ */ 51