4 # This script generates a crypto key that can be used for
5 # community authentication integration.
8 from Cryptodome
import Random
11 if __name__
== "__main__":
12 print("The next row contains a 32-byte (256-bit) symmetric crypto key.")
13 print("This key should be used to integrate a community auth site.")
14 print("Note that each site should have it's own key!!")
19 print(base64
.b64encode(key
).decode('ascii'))