docs: fixed crypto headline and bullet indentation

Change-Id: I65449b80e95430e303bbcc32baf161f95f5db512
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2016-02-21 07:54:30 -05:00 committed by Gerrit Code Review
commit 8bd1cfa5a0
2 changed files with 11 additions and 12 deletions

View file

@ -1,10 +1,9 @@
Cryptography
###########
############
The crypto section contains information regarding the cryptographic
primitives supported by the Zephyr kernel. Use the information to
understand the principles behind the operation of the different
algorithms and how they were implemented.
The crypto section contains information regarding the cryptographic primitives
supported by the Zephyr kernel. Use the information to understand the principles
behind the operation of the different algorithms and how they were implemented.
The following crypto libraries have been included:

View file

@ -81,15 +81,15 @@ Design Goals
************
* Minimize the code size of each cryptographic primitive. This means minimize
the size of a platform-independent implementation, as presented in TinyCrypt.
Note that various applications may require further features, optimizations with
respect to other metrics and countermeasures for particular threats. These
peculiarities would increase the code size and thus are not considered here.
the size of a platform-independent implementation, as presented in TinyCrypt.
Note that various applications may require further features, optimizations with
respect to other metrics and countermeasures for particular threats. These
peculiarities would increase the code size and thus are not considered here.
* Minimize the dependencies among the cryptographic primitives. This means
that it is unnecessary to build and allocate object code for more primitives
than the ones strictly required by the intended application. In other words,
one can select and compile only the primitives required by the application.
that it is unnecessary to build and allocate object code for more primitives
than the ones strictly required by the intended application. In other words,
one can select and compile only the primitives required by the application.
Important Remarks