Created
February 4, 2022 01:09
-
-
Save Beej126/ab511b7100eb348a5c61616867b74593 to your computer and use it in GitHub Desktop.
hackintosh config.plist convert hex <=> base64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# base64 to hex | |
echo -n AwCYPg== | base64 -d | xxd -ps | |
# hex to base64 | |
echo -n 0300983e | xxd -r -p | base64 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment