| Crates.io | psa-crypto-sys |
| lib.rs | psa-crypto-sys |
| version | 0.12.0 |
| created_at | 2020-06-03 13:13:16.695793+00 |
| updated_at | 2023-10-16 15:59:54.635169+00 |
| description | Wrapper around the PSA Cryptography API |
| homepage | |
| repository | https://github.com/parallaxsecond/rust-psa-crypto |
| max_upload_size | |
| id | 249656 |
| size | 18,979,388 |
This is the lower-level wrapper that exposes a minimal low-level C interface to Rust.
This crate exposes an interface for the PSA Crypto API and thus
links to libraries that expose this interface. The expected name
of the library is derived from the reference implementation of the
API - mbedcrypto.
If the library and its headers folder are already installed locally you can
specify their location (the full absolute path) using the MBEDTLS_LIB_DIR and
MBEDTLS_INCLUDE_DIR environment variables at build time. By default dynamic
linking is attempted - if you wish to link statically you can enable the
static feature or pass the MBEDCRYPTO_STATIC environment variable, set to
any value.
Alternatively, the crate will attempt to build the library from scratch and
link against it statically. In this use case enabling the static feature
makes no difference and there is no way to allow dynamic linking. The
requirements for configuring and building MbedTLS can be found
on their repository homepage.
By default, the mbedcrypto library itself and the shim library (which
is needed for inline functions) will not have not have any prefixes. If
the prefix feature is enabled, both the libraries are renamed by
adding a prefix of the form psa_crypto_X_Y_Z_. Also every globally
defined symbol in those libraries has that prefix added. This is to
avoid link-time collisions with other crates that might use the same
library, including other versions of this crate. The renaming of
symbols uses the nm and objcopy commands.
Linking and generating implementation-specific APIs is controlled by the
operations feature that is enabled by default. Therefore, if you
require only the specification-defined bits of the API (namely the constants and types)
you can simply disable default features.
You might want to only use the interface part (including the
implementation-defined bits) of this crate to build for example a PSA Secure
Element Driver. With the feature interface, this crate will only produce the
implementation-defined types and their helpers/accessors using the
MBEDTLS_INCLUDE_DIR variable that you need to pass.
The interface and operations features need a C toolchain. When cross-compiling, the
appropriate C toolchain will automatically be selected. Compilation will fail if it is
not available on your system.
The CI currently tests cross-compilation for the following targets:
aarch64-unknown-linux-gnuarmv7-unknown-linux-gnueabihf