/* * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #ifndef STUB_CRYPTO_CALLER_H #define STUB_CRYPTO_CALLER_H /** * A crypto caller that provides stub functions for all crypto * operations. This will never be used in a production deployment * but is useful during development to provide place holders for * real crypto caller implementations. */ #include "crypto_caller_aead.h" #include "crypto_caller_copy_key.h" #include "crypto_caller_generate_key.h" #include "crypto_caller_hash.h" #include "crypto_caller_mac.h" #include "crypto_caller_asymmetric_decrypt.h" #include "crypto_caller_destroy_key.h" #include "crypto_caller_generate_random.h" #include "crypto_caller_import_key.h" #include "crypto_caller_purge_key.h" #include "crypto_caller_asymmetric_encrypt.h" #include "crypto_caller_export_key.h" #include "crypto_caller_get_key_attributes.h" #include "crypto_caller_sign_hash.h" #include "crypto_caller_cipher.h" #include "crypto_caller_export_public_key.h" #include "crypto_caller_key_derivation.h" #include "crypto_caller_verify_hash.h" #endif /* STUB_CRYPTO_CALLER_H */