Searched refs:gmt_unix_time (Results 1 – 1 of 1) sorted by relevance
220 def __init__(self, gmt_unix_time, random_bytes): argument221 self.gmt_unix_time = gmt_unix_time226 return (isinstance(self, type(other)) and self.gmt_unix_time == other.gmt_unix_time and230 return struct.pack(">I", self.gmt_unix_time) + (self.random_bytes)234 gmt_unix_time = struct.unpack(">I", data.read(4))[0]236 return cls(gmt_unix_time, random_bytes)