mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
15 lines
295 B
C
15 lines
295 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/sha256.h"
|
|
#include "crypto/hmac.h" |