Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096| from DDPClient import DDPClient | |
| import hashlib | |
| def cb(err, data): | |
| print err | |
| print data | |
| m = hashlib.sha256() | |
| m.update('secret123'.encode('utf-8')) | |
| digest = m.hexdigest() |