blob: ad5ac4ff5037b6a442b2cd828024e5100d1abcee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* Copyright (C) 2019-2021 Alibaba Group Holding Limited
*/
#ifndef __SEC_CRYPTO_COMMON_H__
#define __SEC_CRYPTO_COMMON_H__
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "rambus.h"
#include "sec_crypto_errcode.h"
#include "sec_crypto_aes.h"
#include "sec_crypto_rng.h"
#include "sec_crypto_rsa.h"
#include "sec_crypto_sha.h"
#include "sec_crypto_sm2.h"
#include "sec_crypto_sm4.h"
#define SC_lOG(...)
#endif
|