- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Encryption and RMS files
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2006 12:57 AM
05-31-2006 12:57 AM
Encryption and RMS files
We store our information in RMS files and have to encrypt particular fields in those files.
This gave rise to the following questions:
1.Do you have (or know off) encryption/decryption modules on OpenVMS (SHA-1, Triple DES 128) ?
2.If we are able to encrypt/decrypt a particular field, will the SORT on sequential files still work if being used on these encrypted fields ?
3.What happens with indexed files where the key needs to be encrypted? If we want to use that key, can we than fist encrypt and then do a direct read with the encrypted value and still get the correct record back ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2006 02:05 AM
05-31-2006 02:05 AM
Re: Encryption and RMS files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2006 02:09 AM
05-31-2006 02:09 AM
Re: Encryption and RMS files
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2006 02:13 AM
05-31-2006 02:13 AM
Re: Encryption and RMS files
I'm on holiday till 7/6 but when i'm back i'll dig in to it!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2006 02:48 AM
05-31-2006 02:48 AM
Re: Encryption and RMS files
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2006 03:32 AM
05-31-2006 03:32 AM
Re: Encryption and RMS files
The native sort utility will NOT understand the underlying data sort order. It will sort the encrypted bytes, which will have a diffrent order. I don't think you can solve that with 'collating sequences.
You could write your own tool to use calleable sort and provide a comparison routine which which decode and compare.
Conceivably the sort tool would allow you to specify such compare function in a shareable library and use LIB$FIS to activate it, but best I can tell such feature does not exist.
>> 3.What happens with indexed files where the key needs to be encrypted?
Similar. You will only be able to do a 'direct match'. generic key matched ("JOHN" to find "JOHNES") and 'NEXT' operations will be meaningless.
If you go this route I would recommend to consider an artifial primary key in mostly increasing key order, like a record creation timestamp, as the primary storage tool. This will help avoid bucket splitting going crazy to deal with random inserts.
hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2006 10:59 PM
06-07-2006 10:59 PM
Re: Encryption and RMS files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2006 11:41 AM
06-12-2006 11:41 AM
Re: Encryption and RMS files
> But this (old) product only supports AES
> encryption. V8.3 of VMS shall contain a
> new version with actual encryption methods.
Correction: the old version only supports DES encryption. The new version will support AES (the Advanced Encryption Standard). DES is a deprecated FIPS PUB standard effective May 2007.
http://csrc.nist.gov/cryptval/DESTranPlan.pdf
Just a bit of clarification,
Aaron