Codesign any VST on macOS

Discussion in 'Software News' started by RaulMarita, Nov 25, 2024 at 8:52 AM.

  1. RaulMarita

    RaulMarita Newbie

    Joined:
    Yesterday
    Messages:
    4
    Likes Received:
    2
    Hi there!

    In the past few days I started to learn about codesigning and I gathered some info so I will share it with you.

    I know how hard it was to find the right steps so maybe I'll save some people the trouble :)

    Codesign any vst/component:

    In my case it was Autotune.

    1.Remove extended attributes: xattr -rc /Library/Audio/Plug-Ins/VST3/Auto-Tune\ Pro.vst3


    2.Check for file integrity: ls -l@ /Library/Audio/Plug-Ins/VST3/Auto-Tune\ Pro.vst3


    This will list extended attributes (@ after the file details). If any non-standard attributes are shown, you can remove them with xattr.


    3.Try signing the file again: codesign --force --deep --sign "Apple Development: [email protected] (xxxxxxxxxx)" /Library/Audio/Plug-Ins/VST3/Auto-Tune\ Pro.vst3


    4.Check the contents of the VST3 bundle : cd /Library/Audio/Plug-Ins/VST3/Auto-Tune\ Pro.vst3/Contents/MacOS/

    ls


    If there’s an executable file (e.g., Auto-Tune Pro), you can sign it separately: codesign --force --sign "Apple Development: [email protected] (xxxxxxxxxx)" /Library/Audio/Plug-Ins/VST3/Auto-Tune\ Pro.vst3/Contents/MacOS/Auto-Tune\ Pro


    5. Verify the signature: codesign --verify --deep --strict /Library/Audio/Plug-Ins/VST3/Auto-Tune\ Pro.vst3
     
    • Like Like x 1
    • Interesting Interesting x 1
    • List
  2.  
  3. ArticStorm

    ArticStorm Moderator Staff Member

    Joined:
    Jun 7, 2011
    Messages:
    7,734
    Likes Received:
    3,946
    Location:
    AudioSexPro
    Added macOS in the title, since it aint clear from the title.
     
Loading...
Similar Threads - Codesign macOS Forum Date
codesign error (macOS Sierra) iZotope plugins and others Software Oct 28, 2016
How To: Codesign (on Mac) Education Nov 8, 2024
New to codesign Mac / Hackintosh Jun 10, 2024
Codesigning for SIP enabled! Mac / Hackintosh Mar 18, 2024
Waves RET V14 cannot Codesign WavesLicenseEngine Software Mar 5, 2024
Loading...