@@ -23,8 +23,8 @@ square brackets ([1], [2]...) refer to the sections below.
2323 [3] crypto_*() (libtomcrypt.a and crypto.c)
2424 [4] /* LibTomCrypt */ (libtomcrypt.a)
2525
26- [1] The TEE Cryptographic Operations API
27- ****************************************
26+ The TEE Cryptographic Operations API
27+ ************************************
2828OP-TEE implements the Cryptographic Operations API defined by the GlobalPlatform
2929association in the :ref: `tee_internal_core_api `. This includes cryptographic
3030functions that span various cryptographic needs: message digests, symmetric
@@ -44,8 +44,8 @@ The *utee\_\** functions are declared in utee_syscalls.h_ and implemented in
4444utee_syscalls_asm.S _ They are simple system call wrappers which use the *SVC *
4545instruction to switch to the appropriate system service in the OP-TEE kernel.
4646
47- [2] The crypto services
48- ***********************
47+ The crypto services
48+ *******************
4949All cryptography-related system calls are declared in tee_svc_cryp.h _ and
5050implemented in tee_svc_cryp.c _. In addition to dealing with the usual work
5151required at the user/kernel interface (checking parameters and copying memory
@@ -59,8 +59,8 @@ two main purposes:
5959 2. Provide an easy way to disable some families of algorithms at
6060 compile-time to save space. See sw_crypto_lib _ below.
6161
62- [3] crypto_*()
63- **************
62+ crypto_*()
63+ **********
6464The ``crypto_*() `` functions implement the actual algorithms and helper
6565functions. TEE Core has one global active implementation of this interface. The
6666default implementation, mostly based on LibTomCrypt _, is as follows:
@@ -130,8 +130,8 @@ binary format.
130130
131131 .. _sw_crypto_lib :
132132
133- [4] Software crypto library
134- ***************************
133+ Software crypto library
134+ ***********************
135135
136136LibTomCrypt is the default software implementation for cryptographic
137137operations. When so, this is stated by OP-TEE configuration directives
@@ -180,8 +180,8 @@ crypto provider:
180180 - If you intend to make some algorithms optional, please try to re-use the
181181 same names for configuration variables as the default implementation.
182182
183- [5] Support for crypto IC
184- *************************
183+ Support for crypto IC
184+ *********************
185185Some cryptographic co-processors and secure elements are supported under a
186186Generic Cryptographic Driver interface, connecting the TEE Crypto generic APIs
187187to the HW driver interface. This interface is in
0 commit comments