Home
last modified time | relevance | path

Searched refs:plen (Results 1 – 6 of 6) sorted by relevance

/openthread-3.4.0/tests/scripts/thread-cert/border_router/MATN/
DMATN_12_HopLimitProcessing.py170 p: p.ipv6.hlim == 59 and p.ipv6.plen == 130 + ICMP_HEADER_LEN) \
180 p: p.ipv6inner.hlim == 58 and p.ipv6inner.plen == 130 + ICMP_HEADER_LEN) \
197 p: p.ipv6.hlim == 1 and p.ipv6.plen == 130 + ICMP_HEADER_LEN) \
214 p.ipv6inner.plen == 130 + ICMP_HEADER_LEN) \
232 p.ipv6inner.plen == 130 + ICMP_HEADER_LEN) \
250 p.ipv6inner.plen == 130 + ICMP_HEADER_LEN) \
266 p.ipv6inner.plen == 130 + ICMP_HEADER_LEN) \
/openthread-3.4.0/third_party/mbedtls/repo/include/mbedtls/
Dpkcs5.h92 size_t plen, const unsigned char *salt, size_t slen,
/openthread-3.4.0/third_party/mbedtls/repo/library/
Decp.c875 size_t plen; in mbedtls_ecp_point_write_binary() local
883 plen = mbedtls_mpi_size( &grp->P ); in mbedtls_ecp_point_write_binary()
889 *olen = plen; in mbedtls_ecp_point_write_binary()
893 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary_le( &P->X, buf, plen ) ); in mbedtls_ecp_point_write_binary()
915 *olen = 2 * plen + 1; in mbedtls_ecp_point_write_binary()
921 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &P->X, buf + 1, plen ) ); in mbedtls_ecp_point_write_binary()
922 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &P->Y, buf + 1 + plen, plen ) ); in mbedtls_ecp_point_write_binary()
926 *olen = plen + 1; in mbedtls_ecp_point_write_binary()
932 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &P->X, buf + 1, plen ) ); in mbedtls_ecp_point_write_binary()
949 size_t plen; in mbedtls_ecp_point_read_binary() local
[all …]
Dpkcs5.c220 size_t plen, const unsigned char *salt, size_t slen, in mbedtls_pkcs5_pbkdf2_hmac() argument
242 if( ( ret = mbedtls_md_hmac_starts( ctx, password, plen ) ) != 0 ) in mbedtls_pkcs5_pbkdf2_hmac()
Decp_curves.c565 const mbedtls_mpi_uint *p, size_t plen, in ecp_group_load() argument
572 ecp_mpi_load( &grp->P, p, plen ); in ecp_group_load()
Dbignum.c658 size_t n, slen, plen; in mbedtls_mpi_write_file() local
675 plen = strlen( p ); in mbedtls_mpi_write_file()
682 if( fwrite( p, 1, plen, fout ) != plen || in mbedtls_mpi_write_file()