|
|
| .. code-block:: bash | | .. code-block:: bash |
| | | |
| t | openssl enc -e -base64 -in /path/to/binary.pfx -out /path/to/binary.pfx.base64 | t | openssl enc -e -base64 -in /path/to/binary.pfx |
| | | |
| create a binary file from its base64 representation: | | create a binary file from its base64 representation: |
|
|
| t | | t | teleport a binary file between ssh terminals with base64 |
| | | ######################################################## |
| | | |
| | | create a base64 representation of the binary file: |
| | | |
| | | .. code-block:: bash |
| | | |
| | | openssl enc -e -base64 -in /path/to/binary.pfx -out /path/to/binary.pfx.base64 |
| | | |
| | | create a binary file from its base64 representation: |
| | | |
| | | .. code-block:: bash |
| | | |
| | | openssl enc -d -base64 -in /path/to/binary.pfx.base64 -out /path/to/binary.pfx |
| | | |
| | | this creates a ascii file that may be used to copy and paste between terminal wi |
| | | ndows. |
| | | |