mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
17 lines
345 B
C
17 lines
345 B
C
/**
|
|
* @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" |