1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-06-30 11:52:34 +00:00

style(core): fix indentation in crc32 documentation

[no changelog]
This commit is contained in:
M1nd3r 2024-06-10 15:54:03 +02:00 committed by Petr Sedláček
parent d37af9e233
commit e34a027291
2 changed files with 18 additions and 18 deletions

View File

@ -26,17 +26,17 @@
/// package: trezorcrypto.crc /// package: trezorcrypto.crc
/// def crc32(data: bytes, crc: int = 0) -> int: /// def crc32(data: bytes, crc: int = 0) -> int:
/// """ /// """
/// Computes a CRC32 checksum of `data`. /// Computes a CRC32 checksum of `data`.
/// ///
/// Args: /// Args:
/// `data` (`bytes`): Input data. /// `data` (`bytes`): Input data.
/// `crc` (`int`, `optional`): Initial CRC value for chaining /// `crc` (`int`, `optional`): Initial CRC value for chaining
/// computations over multiple data segments. Defaults to 0. /// computations over multiple data segments. Defaults to 0.
/// ///
/// Returns: /// Returns:
/// `int`: Computed CRC32 checksum. /// `int`: Computed CRC32 checksum.
/// """ /// """
mp_obj_t mod_trezorcrypto_crc_crc32(size_t n_args, const mp_obj_t *args) { mp_obj_t mod_trezorcrypto_crc_crc32(size_t n_args, const mp_obj_t *args) {
mp_buffer_info_t bufinfo = {0}; mp_buffer_info_t bufinfo = {0};
mp_get_buffer_raise(args[0], &bufinfo, MP_BUFFER_READ); mp_get_buffer_raise(args[0], &bufinfo, MP_BUFFER_READ);

View File

@ -3,14 +3,14 @@ from typing import *
# extmod/modtrezorcrypto/modtrezorcrypto-crc.h # extmod/modtrezorcrypto/modtrezorcrypto-crc.h
def crc32(data: bytes, crc: int = 0) -> int: def crc32(data: bytes, crc: int = 0) -> int:
""" """
Computes a CRC32 checksum of `data`. Computes a CRC32 checksum of `data`.
Args: Args:
`data` (`bytes`): Input data. `data` (`bytes`): Input data.
`crc` (`int`, `optional`): Initial CRC value for chaining `crc` (`int`, `optional`): Initial CRC value for chaining
computations over multiple data segments. Defaults to 0. computations over multiple data segments. Defaults to 0.
Returns: Returns:
`int`: Computed CRC32 checksum. `int`: Computed CRC32 checksum.
""" """