diff --git a/src/communicatorutils/deniableinserts.py b/src/communicatorutils/deniableinserts.py index 9f55f547..0ecc6d50 100755 --- a/src/communicatorutils/deniableinserts.py +++ b/src/communicatorutils/deniableinserts.py @@ -27,6 +27,6 @@ def insert_deniable_block(comm_inst): if secrets.randbelow(chance) == (chance - 1): # This assumes on the libsodium primitives to have key-privacy fakePeer = onionrvalues.DENIABLE_PEER_ADDRESS - data = secrets.token_hex(secrets.randbelow(1024) + 1) + data = secrets.token_hex(secrets.randbelow(5120) + 1) onionrblocks.insert(data, header='pm', encryptType='asym', asymPeer=fakePeer, disableForward=True, meta={'subject': 'foo'}) comm_inst.decrementThreadCount('insert_deniable_block') \ No newline at end of file