arrowHome Wednesday, 07 January 2009  




 
Main Menu
Home
Platforms
Deployment
Downloads
Online Library
Tricryption
ERUCES Home
What's New
Simplify and Standardize Encryption for C++ PDF Print




Simplify and standardize the entire encryption process by utilizing built-in support for ADO Recordsets, Java Rowsets, data matrixes, and files

The Encryption Framework for Enterprises provides pre-structured and validated code modules through its Tricryption Engine Key Management System, which performs automatic key generation, key integrity checks, authorization and auditing of key usage, key storage and key retrieval. 
  

See Encryption Examples for:

  


C++ File Encryption


 // Create a TEAgentFile object
TEAgentFile file;
// Set original data file and encrypted output file
file.setInputFileName("Test.txt");
file.setOutputFileName("Test.txt.eru");
// Encrypt file
file.attachConnection(conn->getConnectionHandle());
file.encrypt();
file.detachConnection();
cout << "File " << file.getInputFileName() << " was encrypted, the output file is " <<
file.getOutputFileName() << endl;
  
 


 Open the Online SDK

 Download Source Code Examples

 
top