Searched refs:randstring (Results 1 – 7 of 7) sorted by relevance
23 from scapy.utils import randstring, repr_hex588 connection_id = randstring(16)702 self.add_msg(SSLv2RequestCertificate(challenge=randstring(16)))752 self.add_msg(SSLv2ServerFinished(sid=randstring(16)))
307 key = randstring(cs_cls.cipher_alg.key_len)322 self.keyarg = randstring(cs_cls.cipher_alg.block_size)
30 from scapy.layers.tls.crypto.pkcs1 import randstring, pkcs_i2osp637 iv = randstring(l)
24 from scapy.utils import randstring529 p = self.client_hello or SSLv2ClientHello(challenge=randstring(16))
255 p = p[:10] + randstring(28) + p[10+28:]343 p = p[:10] + randstring(28) + p[10+28:]
26 from scapy.utils import randstring, zerofree_randstring, strxor, strand
368 def randstring(l): function