File: tomcrypt_mp.h

package info (click to toggle)
optee-os 4.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,960 kB
  • sloc: ansic: 444,388; asm: 12,922; python: 3,719; makefile: 1,681; sh: 238
file content (15 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (c) 2014, STMicroelectronics International N.V.
 */

#ifndef TOMCRYPT_MP_H_
#define TOMCRYPT_MP_H_

#if defined(_CFG_CORE_LTC_ACIPHER)
void init_mp_tomcrypt(void);
#else
static inline void init_mp_tomcrypt(void) { }
#endif

#endif /* TOMCRYPT_MP_H_ */