| 1 | On plato, in /usr/local/projects/chimerax/builds, the file apple_id.enc contains the information for accessing our Apple Developer RBVI account. It is encrypted, and should be decrypted with the command: |
| 2 | |
| 3 | openssl aes-256-cbc -d -a -pbkdf2 -in apple_id.enc -out apple_id |
| 4 | |
| 5 | The password required for decryption is the chimera password, which at the time of this writing is two words and a location. The resulting apple_id file will be plain text and should not be left lying around longer than necessary. If the information in the file needs updating, the corresponding encryption command is: |
| 6 | |
| 7 | openssl aes-256-cbc -a -salt -pbkdf2 -in apple_id -out apple_id.enc |
| 8 | |