Skip to content

Instantly share code, notes, and snippets.

@Beej126
Created February 4, 2022 01:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Beej126/ab511b7100eb348a5c61616867b74593 to your computer and use it in GitHub Desktop.
Save Beej126/ab511b7100eb348a5c61616867b74593 to your computer and use it in GitHub Desktop.
hackintosh config.plist convert hex <=> base64
# 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