Home
last modified time | relevance | path

Searched refs:major (Results 1 – 20 of 20) sorted by relevance

/openthread-latest/tests/scripts/thread-cert/
Ddtls.py197 def __init__(self, major, minor): argument
198 self.major = major
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
659 self._major = major
679 def major(self): member in VendorStackVersion
684 self.stack_vendor_oui, self.build, self.rev, self.minor, self.major)
695 major = rest[3] & 0xF
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/
DBRANCHES.md9 this is where the next major version of Mbed TLS (version 4.0) is being
24 compatibility on major version changes (e.g. from 3.x to 4.0). We also maintain
37 modification with any later release x.y'.z' with the same major version
74 We intend to maintain this backward compatibility throughout a major version
79 LTS, but future major version upgrades (for example from 2.28.x/3.x to 4.y)
DCONTRIBUTING.md35 …is an API change, the contribution, if accepted, will be merged only when there is a major release.
DLICENSE376 form) with the major components (compiler, kernel, and so on) of the
DChangeLog2079 the last major gap to compliance with the PSA Cryptography specification
4952 * Fixed version-major intolerance in server
5269 * Fixed version-major intolerance in server
/openthread-latest/src/lib/spinel/
Dlogger.cpp391 unsigned int major; 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/docs/architecture/psa-migration/
Dpsa-limitations.md70 4.0 or another major version.)
75 done in 4.0 or another major version.)
83 time; making it mandatory can only be done in 4.0 or another major version.)
Dstrategy.md69 maintaining dual code paths until the next major version. (Note: these
Dmd-cipher-dispatch.md6 …ently using legacy cryptography APIs, and should transition to PSA, without a major version change.
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dssl.h4285 void MBEDTLS_DEPRECATED mbedtls_ssl_conf_max_version(mbedtls_ssl_config *conf, int major,
4342 void MBEDTLS_DEPRECATED mbedtls_ssl_conf_min_version(mbedtls_ssl_config *conf, int major,
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-thread-safety/
Dpsa-thread-safety.md82 …s](#condition-variables) for discussion about implementing new primitives in future major releases.
314 It would be ideal to add these to a future major version; we cannot add these as requirements to th…
/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/docs/architecture/testing/
Dinvasive-testing.md209 …nable it. This is very powerful and usually easy to use, but comes with a major downside: we aren'…
/openthread-latest/third_party/mbedtls/repo/docs/
Dpsa-transition.md34 …er can access internal fields of operations. This is less true in the 3.x major version than befor…
43 * Mbed TLS 3.1.0 (Dec 2021): TLS 1.3 support is the first major feature that requires the PSA API.
88 One of the major differences between the legacy API and the PSA API is that in the PSA API, access …
663 … or `mbedtls_ecp_keypair` structure in the legacy API. However, there are major differences in the…
1306 … However, this is likely to happen after Mbed TLS 4.0, therefore the next major version of Mbed TL…
/openthread-latest/third_party/mbedtls/repo/docs/architecture/
Dpsa-shared-memory.md241 … to see whether compiler optimization is a problem. Specifically, for the major compilers supporte…
246 If copying behaviour is preserved by all major compilers then assume that compiler optimization is …
/openthread-latest/third_party/mbedtls/repo/framework/
DLICENSE376 form) with the major components (compiler, kernel, and so on) of the
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_ssl.data916 SSL session serialization: Wrong major version
932 TLS 1.3: CLI: session serialization: Wrong major version
948 TLS 1.3: SRV: session serialization: Wrong major version
/openthread-latest/third_party/mbedtls/repo/docs/proposed/
Dpsa-driver-interface.md6 …mentation of the PSA Cryptography API. At this stage, Arm does not expect major changes, but minor…