/* * Copyright (C) 2024 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @addtogroup CryptoArchitectureKit * @{ * * @brief Provides an entry to the crypto header files for you to reference. * * @syscap SystemCapability.Security.CryptoFramework * @since 12 */ /** * @file crypto_architecture_kit.h * * @brief Provides an entry to the crypto header files for you to reference. * * @library libohcrypto.so * @kit CryptoArchitectureKit * @syscap SystemCapability.Security.CryptoFramework * @since 12 */ #ifndef CRYPTO_ARCHITECTURE_KIT_H #define CRYPTO_ARCHITECTURE_KIT_H #include "crypto_common.h" #include "crypto_asym_key.h" #include "crypto_digest.h" #include "crypto_signature.h" #include "crypto_sym_cipher.h" #include "crypto_sym_key.h" /** @} */ #endif /* CRYPTO_ARCHITECTURE_KIT_H*/