SCRIPT TO ENCRYPT A FILE IN NETSUITE

HOW TO ENCRYPT A FILE IN NETSUITE USING SCRIPT? - NETSUITE ACADEMY

Netsuite scripting provides the ability to encrypt any file stored in file cabinet. You would need the file id for this purpose. This file id can be hard coded or obtained using search as per the requirement. The default algorithm used for encrypting is SHA-1 method. The other available methods are base64, aes, xor. The below code shows how to encrypt a file using Advanced Encryption Standard (AES) method.



{
                  var loadfile = nlapiLoadFile(fileid);  // can be used only in server side script
     
    var filevalue = loadfile.getValue();
    
    var encrypted_text = nlapiEncrypt(filevalue, "aes");
    
                   var filename = loadfile.getName()+'_encrypted';
          
                 nlapiLogExecution('DEBUG', 'filename', filename);
            
                var file_folderid = loadfile.getFolder();
            
                var encrypted_file = nlapiCreateFile(filename, 'PLAINTEXT', encrypted_text);
           
                  encrypted_file.setFolder(file_folderid);
           

                  var encryptfileid = nlapiSubmitFile(encrypted_file);

}


contact us at:
Email : info@smilingcoders.com

Comments

  1. We are NetSuite Solution Provider with vast experience in NetSuite Implementation, netsuite customization including netsuite training & netsuite integration.
    NetSuite Solution Provider
    NetSuite Training
    NetSuite Implementation
    NetSuite Customization
    NetSuite Integration

    ReplyDelete

Post a Comment

Popular posts from this blog

USING CASE (IF AND ELSE) IN NETSUITE SAVED SEARCH- NETSUITE ACADEMY

Calling User Event Script from another User Event

HOW TO SET SUBLIST SUB RECORD VALUES IN SUITE SCRIPT 1.0 AND 2.0