/** * @file crypto.h * @brief Switch (accelerated) crypto includes. * @copyright libnx Authors */ #pragma once #include "types.h" #include "crypto/aes.h" #include "crypto/aes_cbc.h" #include "crypto/aes_ctr.h" #include "crypto/aes_xts.h" #include "crypto/cmac.h" #include "crypto/sha256.h" #include "crypto/sha1.h" #include "crypto/hmac.h"