This disclosure relates generally to data security, and more specifically to methods and systems for exchanging and maintaining data with high levels of security.
Recently, reports of data breaches and compromises, thefts, or “hacks” of sensitive user information have become commonplace. Most of the vulnerabilities arise from exchange of user data over public networks, granting remote access to users whose security credentials or passwords can be guessed or automatically emulated, and storage and retrieval of data on systems that can be compromised. The industry has developed methods and algorithms for storing and transmitting data in encrypted format, such as the Advanced Encryption Standard (AES), which defines different block and key sizes and that provide higher levels of complexity for larger block and key sizes. A common AES standard, known as “AES-128”, can theoretically be discovered or hacked, although with a great amount of difficulty. While AES standards with higher computational complexity have been developed, many systems use legacy AES-128 encryption or even simpler encryption and are still vulnerable to attack.
A typical system using a public key encryption (PKI) algorithm uses public key/private key encryption, in which the public key is generally available and used to encrypt data, but the private key is kept confidential and can decrypt the data. Because the private key is stored on one or more devices, if the computer itself is breached or hacked and the private key is discovered, the computational complexity of deciphering PKI-encrypted data can be bypassed, and sensitive user data can be exposed.
In the PKI system, an entity known as a certificate authority (CA) has the ability to issue private keys to allow trusted users to gain access to data. However, the CAs themselves have been breached, hacked, or stolen from, leading to counterfeit certificates being issued and user's data being stolen.
In the following description, the use of the same reference numerals in different drawings indicates similar or identical items. Unless otherwise noted, the word “coupled” and its associated verb forms include both direct connection and indirect electrical connection by means known in the art, and unless otherwise noted any description of direct connection implies alternate embodiments using suitable forms of indirect electrical connection as well.
Encryption and/or decryption according to the techniques described herein vastly improve known public key/private key systems by making encryption and decryption keys transitory on the user's system, such that they are only in existence for a period of time too short to expose the keys with any significant risk of hacking. The system is symmetric in that the same process is used for both encrypting and decrypting. The system defines a secure “container” for data that practically cannot be hacked.
In general, the inventors have created a transient, symmetric key method that allows for keys to be generated on demand and be present only for short periods of time while needed for encryption and decryption. The approach utilizes a distributed, zero-trust, end-to-end encryption architecture which leverages a new transient symmetric key technology (TSKT). After the keys are no longer needed, they are digitally destroyed by overwriting the values.
There will normally be three unique participants in the enhanced key management process: a data creator, a data accessor, and a command and control server. The data creator creates and encrypts the data. The data accessor has access rights to the encrypted data. The command and control server authenticates, validates and authorizes all creators' and accessors' rights to encrypted data.
Moreover, there are two types of keys that can be used to encrypt data: asymmetric and symmetric. Asymmetric cryptography, also known as Public-Key Infrastructure (PKI), uses a pair of keys (public and private) to encrypt and decrypt data. Traditionally, a network user receives a public and private key pair from a certificate authority. Any other user who wants to send an encrypted message can get the intended recipient's public key directly from the recipient or from a public directory. They use this key to encrypt the data, and they send it to the recipient. When the recipient gets the message, they decrypt it with their private key, which no one else should have access to.
However, this is not the case for the distributed, zero-trust, end-to-end encryption architecture described herein. In the architecture described herein, certificate authorities are unnecessary. Furthermore, the TSKT eliminates the need for a server to use, store, and manage public/private keys for users. The client machines generate their own public/private keys locally as needed. The public key is sent to the server by the local client when making a request to create a secure container or access an existing secure container. That public key is not stored on the server.
Known symmetric cryptography utilizes only one key to encrypt and decrypt data. While symmetric-key systems are generally more simple and faster, their main drawback is that the two parties attempting to communicate must somehow exchange the key in a secure way. This is where the TSKT comes into play, and the TSKT steps are described below. A TKST system according to some embodiments will now be described with a concrete example.
1. Creator (e.g. Client 1 in
2. Creator requests permission from a Command & Control Server (CCS) (hereinafter “Server”) to create a secure container;
3. Server authenticates and validates the request;
4. Server generates Seed A via a Pseudo Random Number Generator (PRNG), and Server generates a randomly unique formula;
5. Server encrypts copy of Seed A and the formula with creator's public key, e.g., an ECC 521 public key;
6. Server encrypts and stores Seed A and the formula;
7. Server passes encrypted Seed A and the formula to client via SSL or, as shown in
8. Creator decrypts Seed A and the formula using private key;
9. Creator generates Seed B on local device via a PRNG;
10. Creator uses the formula to combine Seed A and B to create Seed C, also known as the Data Seed;
11. Creator generates the payload;
12. Creator uses Seed A to generate AES Key 1;
13. Data Seed (C) is used to generate AES Key 2;
14. Creator uses AES Key 2 to encrypt payload;
15. Creator uses AES Key 1 to encrypt Seed B;
16. AES keys and seeds are destroyed by Creator;
17. Creator combines payload, encrypted Seed B and other data into one container;
18. Creator finishes registering the new secure container with the CCS; and
19. Container is ready for transport or storage, e.g. a cloud storage server.
As shown in
At process node 130, Client 1 receives Seed A and decrypts it using the AES session key. At process node 132, Client 1 uses the AES Key 1 to encrypt Seed B. At process node 140, Client 1 generates Seed B using a PRNG. At process node 142, Client 1 uses Seeds A and B to make Seed C according to the formula. At process node 146, Client 1 uses Seed C to generate a key, namely AES Key 2, and at process node 148, Client 1 uses AES Key 2 to encrypt the data payload, i.e. sensitive data it desires to protect.
At process node 150, Client 1 combines encrypted Seed B and the encrypted data payload, along with various metadata, to create the secure container. At process node 160, Client 1 destroys all AES keys and seeds and the formula after use, including all encrypted forms thereof. At process node 160, Client 1 finishes registering the new secure container with the CCS by sending the metadata to the CCS, encrypted using the AES session key. Finally at process node 170, Client 1 sends the secure container to a storage server, such as a cloud storage server as shown in
1. Data accessor (hereinafter “accessor”) has credentials, and generates public and private keys (RSA or ECC);
2. Accessor receives the secure container from the cloud or other media;
3. Accessor opens the secure container and begins the process of requesting access to encrypted data;
4. Accessor sends their public key and container metadata to CCS via an SSL or TLS connection;
5. Server authorizes the request, and retrieves Seed A and the formula for the container that needs to be opened;
6. Server encrypts Seed A and the formula using Accessor public key;
7. Server passes encrypted Seed A and the formula to Accessor via the SSL or TLS connection;
8. Accessor decrypts container using its private key;
9. Accessor uses Seed A to generate AES Key 1;
10. Accessor uses AES Key 1 to decrypt Seed B and the formula;
11. Accessor combines Seed A and B to create Seed C, using the formula provided by Server;
12. Accessor uses Seed C to generate AES key 2;
13. Accessor uses AES Key 2 to decrypt the payload, the payload being viewable, for example, by a local client secure viewer; and
14. Accessor destroys all Seeds and AES keys.
In flow diagram 200, at process node 210, a medium such as a cloud storage server as stores a secure container previously created and uploaded by a data creator as shown in
Using the TKST process, the CCS never receives a copy of Creator's sensitive data, only Seed A and the formula. When the CCS sends Seed A and the formula, it uses a secure communication protocol, such as one using symmetric AES session keys like TLS or SSL. Moreover, AES Key 1 and AES Key 2 only exist for a very short period of time, on the order of a few microseconds, and the clients at which they are created, either Client 1 or Client 2, can securely destroy them after use.
TSKT system 300 includes a client labeled “CLIENT 1” that functions as a data creator 310, a file server system that functions as a CCS 320, a cloud storage server, enterprise server, other file server system, or other storage medium that functions as a storage server 330, and a client labeled “CLIENT 2” that functions as a data accessor 340. Each of CLIENT 1 and CLIENT 2 can have associated with it, for example, a laptop computer, a desktop computer, a notebook computer, a personal digital assistant (PDA), a smartphone, and the like, and in general each of them can be any data processor or data processing system capable of creating digital file content that will be secured at a user's direction and perform the computations as described.
CLIENT 1 and CLIENT 2 communicate with other components including CCS 320 and storage server 330 using existing wired and/or wireless computer networks, and TSKT system 300 shows these communication paths as bidirectional arrows. Typically, these communications paths will be internet connections implementing secure forms of the TCP/IP protocol that use AES session keys (TLS or SSL) for security. In some embodiments, SSL session keys may be used in place of the TLS session keys.
Data creator 310 first creates a file 312 that he or she wishes to grant data accessor 340 access to. The file can be, for example, a word processing document, a plain text file, a spreadsheet file, a visual presentation file, an photograph, an audio recording, a video recording, and the like. The user associated with data creator 310 may wish to secure file 312 because it contains credit card credentials, user passwords, personal health information, confidential business information, company trade secrets, attorney work product or attorney-client privileged communications, or other sensitive data. File 312 is stored in memory of the computer associated with data accessor 310, and would be vulnerable to hacking or theft if sent over a public network such as the internet to data accessor 340, and may additionally be subject to hacking or theft if stored on either CCS 320 or storage server 330. TSKT system 300 assumes zero trust from computer networks and from organizations that operate CCS 320 and storage server 330.
Subsequently, data creator 310 desires to store data securely on storage server 330, or to send data to data accessor 340 using other means. At this point, data creator 310 sends a request to create a secure container to CCS 320. In some embodiments, the user creates the request using software resident on client 310's associated computer. In one example, the software can be a stand-alone program running under the associated computer's operating system. In another example, the software can be a plug-in, applet, or widget that is tightly coupled to another program, such as an EMAIL program. In an exemplary embodiment, the software displays a graphical user interface that allows the user to select options associated with the creation secure container. The software preferably interacts with CCS 320 in the background and in a way that is invisible to the user to create a better user experience.
Data creator 310 also uses Seed A to generate AES Key 1, and encrypts Seed B using AES Key 1. Data creator 310 uses the Data Seed (Seed C) to generate AES Key 2, and encrypts the data payload, i.e. the file desired to be protected, using AES Key 2. Data creator 310 then combines encrypted Key 2 and encrypted Seed B with various metadata to form secure container 314, labelled “SC”. The metadata includes various data rights management (DRM) indicators such as copy, printing, and/or saving privileges, biometrics that can uniquely identify the user of data creator 340 such as fingerprints, facial characteristics, and the like, geographic information of data creator 340 for geo-fencing access rights, a device identifier (Device ID), and access rights such as timelines that indicate when accesses are allowed or prohibited.
Shortly after use in creating secure container 314, data creator 310 destroys all keys and seeds and the formula. In this system, data creator 310 destroys both AES Key 1 and AES Key 2, as well as Seed A, Seed B, the Data Seed, and the formula, and any encrypted versions of them, using a digital shredder 316. A conventional file erase process of a personal computer operating system does not destroy or overwrite the data when the file is moved to the “recycle bin” or “trash”, but merely deletes the file entry in the directory. Data of a recently deleted file may actually persist in computer memory for some time, making it subject to hacking and discovery. In addition, data that has been stored in a solid-state virtual memory drive, such as one based on floating-gate memory, may still be discoverable even after its nominal erasure, due to incomplete erasure or remaining charge profiles on the floating gates. To prevent these possibilities, data creator 310 uses digital shredder 316 to securely remove the data not only by removing its identification in the file directory, but also by overwriting the physical memory that the data was stored in sufficiently to prevent later discovery.
By creating Seed B using the PRNG with an adequate size, data creator 310 makes it practically impossible for a hacker to reproduce Seed B using random number generation. Moreover by allowing the seeds and keys to exist for only a brief period of time before they are digitally shredded, data creator 310 makes it difficult for a hacker that surreptitiously is able to access data creator 310's computer remotely, to understand the significance of the activity quickly enough to capture the necessary seeds, formula, and keys while they exist and therefore to decrypt secure container 314.
Shortly after use in creating the keys to decrypt encrypted Seed B and create AES keys 1 and 2, data accessor 340 destroys all keys and seeds and the formula including both AES Key 1 and AES Key 2, as well as Seed A, Seed B, the Data Seed, and the formula, and encrypted forms thereof, using a digital shredder 342. Digital shredder 342 preferably operates in the same general way as digital shredder 316 of
Thus, the TSKT system described herein provides an improvement in the operation of computer systems compared to known computer systems by placing the creation of encryption keys within the control of the party who owns the data. The TSKT system provides secure file creation and access by assuming zero trust on the part of any third-party actors, including CCS 320 and storage server 330. For example, even if storage server 330 is breached such that data creator 310's public key and a secure container are exposed, the secure container cannot be decrypted because storage server 330 is never in possession of any AES key capable of decrypting it. Thus, data creator 310 retains control over its data, which other systems will have access to it, and what kind of access the other systems will have. Because the keys and seeds that are used to create them are only in existence for a short period of time, it becomes extremely difficult or practically impossible to hack by third parties.
While various embodiments have been described, it should be apparent that various modifications may exist. For example, different protocols may be used during communications that transmit the secure container, including SSL, TLS, and the like. Moreover, the data creator may transfer the secure container to the data accessor in a variety of ways, such as through a storage server, directly through a portable storage medium, and the like. The storage server may take many forms, such as a cloud storage server, an enterprise server, and EMAIL server, and the like. Also various types of computer-based systems may be used for the data creator and the data accessor, including a laptop computer, a desktop computer, a notebook computer, a personal digital assistant (PDA), a smartphone, and the like. Also the communication links can be established using the internet, a local area network, a satellite link, and the like.
Accordingly, it is intended by the appended claims to cover all modifications of the invention that fall within the scope of the disclosed embodiments.
Number | Date | Country | |
---|---|---|---|
62878637 | Jul 2019 | US |