Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Julien Panis 2289fa1770 samples: drivers: crypto: Add entry to sample.yaml for cc23x0 4 weeks ago
..
boards samples: drivers: crypto: Support SiM3Uxx 9 months ago
src drivers; crypto: Remove TinyCrypt shim 2 months ago
CMakeLists.txt
README.rst doc: driver: samples: Update driver samples to use new Sphinx extension 2 years ago
prj.conf samples: drivers: crypto: Simplify configuration 2 years ago
prj_mtls_shim.conf modules: mbedtls: remove the default enabling of features 1 year ago
sample.yaml samples: drivers: crypto: Add entry to sample.yaml for cc23x0 4 weeks ago

README.rst

.. zephyr:code-sample:: crypto
:name: Crypto
:relevant-api: crypto

Use the crypto APIs to perform various encryption/decryption operations.

Overview
********
An example to illustrate the usage of :ref:`crypto APIs <crypto_api>`.

Building and Running
********************

This project outputs to the console. It can be built and executed
on QEMU as follows:

.. zephyr-app-commands::
:zephyr-app: samples/drivers/crypto
:host-os: unix
:board: qemu_x86
:goals: run
:compact:

Sample Output
=============

.. code-block:: console

[general] [INF] main: Encryption Sample

[general] [INF] cbc_mode: CBC Mode

[general] [INF] cbc_mode: cbc mode ENCRYPT - Match

[general] [INF] cbc_mode: cbc mode DECRYPT - Match

[general] [INF] ctr_mode: CTR Mode

[general] [INF] ctr_mode: ctr mode ENCRYPT - Match

[general] [INF] ctr_mode: ctr mode DECRYPT - Match

[general] [INF] ccm_mode: CCM Mode

[general] [INF] ccm_mode: CCM mode ENCRYPT - Match

[general] [INF] ccm_mode: CCM mode DECRYPT - Match

Exit QEMU by pressing :kbd:`CTRL+A` :kbd:`x`.