Home
last modified time | relevance | path

Searched refs:random_bytes (Results 1 – 3 of 3) sorted by relevance

/openthread-3.4.0/tests/scripts/thread-cert/
Ddtls.py220 def __init__(self, gmt_unix_time, random_bytes): argument
222 self.random_bytes = random_bytes
223 assert len(self.random_bytes) == Random.random_bytes_length
227 self.random_bytes == other.random_bytes)
230 return struct.pack(">I", self.gmt_unix_time) + (self.random_bytes)
235 random_bytes = bytes(data.read(cls.random_bytes_length))
236 return cls(gmt_unix_time, random_bytes)
/openthread-3.4.0/tools/otci/otci/
Dotci.py2238 random_bytes: Optional[int] = None,
2250 if (text is not None) + (random_bytes is not None) + (hex is not None) != 1:
2260 elif random_bytes is not None:
/openthread-3.4.0/tools/otci/tests/
Dtest_otci.py312 leader.udp_send(leader.get_ipaddr_rloc(), 1234, random_bytes=3)