Session_Key_Import
This API imports key into the key management appliances.
URL
./Session_Key_Import
Input Parameters
| Parameters | Description | 
|---|---|
| keyname | Name of the key to import. | 
| keyalgorithm | Algorithm to be used. Possible options are:  — AES — RSA — EC — Hmac  | 
| keyisdeletable | Determines whether the imported key will be deletable via the API – boolean, default is false. | 
| keyisexportable | Determines whether the imported key will be exportable via the API – boolean, default is false. | 
| keybytes | The bytes for key to be imported. | 
Sample SOAP Parameters
   <prot:Session_Key_Import>
        <keyname>aes256vtimported</keyname>
        <keyalgorithm>AES</keyalgorithm>
        <keyisdeletable>true</keyisdeletable>
        <keyisexportable>true</keyisexportable>
        <keybytes>68711F03ABEE8B460509D5D54E7C70D3A78ABE21572746D31C433A797093B2CC</keybytes>
    </prot:Session_Key_Import>
Output
boolean – indicate if key import was successful.
   <ns1:Session_Key_ImportResponse xmlns:ns1="http://dsws.org/protectappws/">true</ns1:Session_Key_ImportResponse>