Home
last modified time | relevance | path

Searched refs:minor (Results 1 – 16 of 16) sorted by relevance

/openthread-latest/tests/scripts/thread-cert/
Ddtls.py197 def __init__(self, major, minor): argument
199 self.minor = minor
202 … return (isinstance(self, type(other)) and self.major == other.major and self.minor == other.minor)
205 return struct.pack(">BB", self.major, self.minor)
209 major, minor = struct.unpack(">BB", data.read(2))
210 return cls(major, minor)
213 return "ProtocolVersion(major={}, minor={})".format(self.major, self.minor)
626 if record.version.major != 0xfe or record.version.minor != 0xFD:
Dmesh_cop.py654 def __init__(self, stack_vendor_oui, build, rev, minor, major): argument
658 self._minor = minor
675 def minor(self): member in VendorStackVersion
684 self.stack_vendor_oui, self.build, self.rev, self.minor, self.major)
694 minor = rest[3] & 0xf0
696 return VendorStackVersion(stack_vendor_oui, build, rev, minor, major)
/openthread-latest/tests/scripts/thread-cert/pktverify/
D__init__.py33 assert sys.version_info.major == 3 and sys.version_info.minor >= 6
/openthread-latest/third_party/mbedtls/repo/docs/proposed/
Dpsa-driver-wrappers-codegen-migration-guide.md5 … user migration guidelines while the Mbed TLS project tides over multiple minor revs of version 1.…
12 During the process of implementation there might be minor variations wrt versioning and broader imp…
Dpsa-driver-interface.md6 …A Cryptography API. At this stage, Arm does not expect major changes, but minor changes are expect…
/openthread-latest/src/lib/spinel/
Dlogger.cpp392 unsigned int minor; in LogSpinelFrame() local
395 &major, &minor); in LogSpinelFrame()
397 …start += Snprintf(start, static_cast<uint32_t>(end - start), ", major:%u, minor:%u", major, minor); in LogSpinelFrame()
/openthread-latest/third_party/mbedtls/repo/
DBRANCHES.md22 API compatibility in the `main` branch across minor version changes (e.g.
49 examples of changes that are common in minor releases of Mbed TLS, and are
D.pylintrc52 # This is of minor utility (mainly a performance gain when there are
DREADME.md302 …PSA Crypto API), but the code of the drivers may have to change in future minor releases of Mbed T…
DChangeLog430 new implementation with a much smaller footprint, but some minor
2401 * Fix minor performance issue in operations on Curve25519 caused by using a
4798 * Other minor issues (found by Peter Vaskovic)
5925 * Fixed minor bug regarding mpi_gcd located within the
5927 * Fixed minor memory leak in x509parse_crt() and added better
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dssl.h4286 int minor);
4343 int minor);
/openthread-latest/third_party/mbedtls/repo/docs/
D3.0-migration-guide.md64 …3, the layout of structures is not considered part of the stable API, and minor versions (3.1, 3.2…
72 …ns are missing in the 3.0 release, and we expect to add them to the first minor release(s) (3.1, e…
74 …ou do so at your own risk, since such code is likely to break in a future minor version of Mbed TL…
/openthread-latest/third_party/mbedtls/repo/library/
Dssl_tls.c2930 void mbedtls_ssl_conf_max_version(mbedtls_ssl_config *conf, int major, int minor) in mbedtls_ssl_conf_max_version() argument
2932 conf->max_tls_version = (mbedtls_ssl_protocol_version) ((major << 8) | minor); in mbedtls_ssl_conf_max_version()
2935 void mbedtls_ssl_conf_min_version(mbedtls_ssl_config *conf, int major, int minor) in mbedtls_ssl_conf_min_version() argument
2937 conf->min_tls_version = (mbedtls_ssl_protocol_version) ((major << 8) | minor); in mbedtls_ssl_conf_min_version()
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_ssl.data920 SSL session serialization: Wrong minor version
936 TLS 1.3: CLI: session serialization: Wrong minor version
952 TLS 1.3: SRV: session serialization: Wrong minor version
Dtest_suite_psa_crypto.data7525 # for leading zeros. This is a very minor bug. Re-enable this test when this
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-migration/
Dmd-cipher-dispatch.md22 so that my code keeps working in new minor versions of Mbed TLS.