For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| see comments |
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| Calculate next action | |
| def act(self, observation): | |
| y = 0 | |
| for line in observation: | |
| x = 0 | |
| for pixel in line: | |
| color = RGB(pixel[0], pixel[1], pixel[2]) |