Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

NetSnoopy's avatar
NetSnoopy
Icon for Cirrus rankCirrus
Apr 18, 2018

CRYPTO::encrypt import key or cert from SSL Certificate List

Hello,

 

I use the CRYPTO::encrypt funktion an it works very well. But it is needed to write the private key in the iRule. If there a way to import the private key or certificate direct from "SSL Certificate List" or read in as file?

 

Thanks for your help.

 

1 Reply

  • I rules can't access SSL certificates stored on the device. It is possible however to store keys in a subtable table and retrieve use this to for encrypting/decrypting etc.

    set keyValue [table lookup -subtable $keyStore $keyName]

    You will need to devise a method of pushing your keys to the device such as sending a SOAP request to a dedicated virtual server which will parse the request and add the add the key information to the session table.