Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Created September 30, 2018 04:05
Show Gist options
  • Save jordanhudgens/7c86ff7721d3a1ee185a89238eb28e95 to your computer and use it in GitHub Desktop.
Save jordanhudgens/7c86ff7721d3a1ee185a89238eb28e95 to your computer and use it in GitHub Desktop.
>>> import os
>>> import binascii
>>> binascii.b2a_hex(os.urandom(128))
'e681416513db7251edeae16a932971c83410d3f9c5acc1acad6349f210e8442d357bb316599e2f17fbc6a3f714268cb920aba5f24604c7d021652a8c998e9fe7212562ffc19e4b022b63587c0cff7a620db6f43879fd04823b12a6820af13479ac7c218dafb919116d239f83378e28fc09fea75c84e5fa3ca84c862afa440f1d'
>>> binascii.b2a_hex(os.urandom(10))
'082084d986ac5cff7da2'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment