WO2008092166A2 - File encryption while maintaining file size - Google Patents

File encryption while maintaining file size Download PDF

Info

Publication number
WO2008092166A2
WO2008092166A2 PCT/US2008/052227 US2008052227W WO2008092166A2 WO 2008092166 A2 WO2008092166 A2 WO 2008092166A2 US 2008052227 W US2008052227 W US 2008052227W WO 2008092166 A2 WO2008092166 A2 WO 2008092166A2
Authority
WO
WIPO (PCT)
Prior art keywords
file
encryption
blocks
configuration rules
mode
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Ceased
Application number
PCT/US2008/052227
Other languages
French (fr)
Other versions
WO2008092166A3 (en
Inventor
Eric Murray
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Ingrian Networks Inc
Thales DIS CPL USA Inc
Original Assignee
SafeNet Inc
Ingrian Networks Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by SafeNet Inc, Ingrian Networks Inc filed Critical SafeNet Inc
Priority to EP08728422A priority Critical patent/EP2106641A4/en
Priority to US12/448,577 priority patent/US20100095115A1/en
Priority to JP2009547461A priority patent/JP2010517447A/en
Publication of WO2008092166A2 publication Critical patent/WO2008092166A2/en
Publication of WO2008092166A3 publication Critical patent/WO2008092166A3/en
Anticipated expiration legal-status Critical
Ceased legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/60Protecting data
    • G06F21/62Protecting access to data via a platform, e.g. using keys or access control rules
    • G06F21/6218Protecting access to data via a platform, e.g. using keys or access control rules to a system of files or objects, e.g. local or distributed file system or database
    • G06F21/6227Protecting access to data via a platform, e.g. using keys or access control rules to a system of files or objects, e.g. local or distributed file system or database where protection concerns the structure of data, e.g. records, types, queries
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L9/00Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols
    • H04L9/06Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols the encryption apparatus using shift registers or memories for block-wise or stream coding, e.g. DES systems or RC4; Hash functions; Pseudorandom sequence generators
    • H04L9/0618Block ciphers, i.e. encrypting groups of characters of a plain text message using fixed encryption transformation
    • H04L9/0637Modes of operation, e.g. cipher block chaining [CBC], electronic codebook [ECB] or Galois/counter mode [GCM]
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L9/00Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols
    • H04L9/14Cryptographic mechanisms or cryptographic arrangements for secret or secure communications; Network security protocols using a plurality of keys or algorithms
    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2221/00Indexing scheme relating to security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F2221/21Indexing scheme relating to G06F21/00 and subgroups addressing additional information or applications relating to security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F2221/2107File encryption
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L2209/00Additional information or applications relating to cryptographic mechanisms or cryptographic arrangements for secret or secure communication H04L9/00
    • H04L2209/20Manipulating the length of blocks of bits, e.g. padding or block truncation

Definitions

  • the encryption may change the size of the file. This may have some undesirable effects.
  • an operating system may work with block sizes of, e.g., 512 bytes. Where encryption adds n additional bytes to a particular 512 byte block, the file system would have to grab two blocks in order to get that particular block, plus the encryption overhead. This can have significant deleterious effects on caching systems that cache blocks of data.
  • a file utility may allow a seek into a file. If the seek adds 1 megabyte into a file, and there is additional padding from encryption overhead, then the operating system will have to do some additional calculations to take into account the encryption overhead. These are but two examples of why changing file size with encryption can be troublesome. An exhaustive list is not attempted herein.
  • Stream ciphers may be used to encrypt files without changing file size, but stream ciphers have problems. For example, security can be compromised if the same stream cipher key is used to encrypt a file twice. For this reason, a stream cipher must use a different key every time a file is encrypted.
  • a technique for encrypting a file without changing file size may involve encrypting a first set of a plurality of blocks of a file in a first encryption mode using the first set of encryption keys and/or the first set of configuration rules, and a second set of the plurality of blocks of the file in a second encryption mode using a second set of the encryption keys and/or a second set of the configuration rules without causing the file to increase in size before and after the encryption.
  • the first and the second encryption modes are chosen to be different, so are the first and the second sets of the encryption keys and/or the configuration rules to reduce security risk of the file being encrypted.
  • FIG. 1 depicts an example of a system including a file encryption engine.
  • FIG. 2 depicts an example of an encrypted file.
  • FIGS. 3A and 3B depict examples of how to respectively encrypt and decrypt chained ciphertext block(s) in cipher block chaining (CBC) mode encryption.
  • CBC cipher block chaining
  • FIGS. 4A and 4B depict examples of how to respectively encrypt and decrypt streamed ciphertext block(s) in cipher feedback (CBF) mode encryption.
  • CBF cipher feedback
  • FIG. 5 depicts a flowchart 500 of an example of a method for encrypting a file.
  • FIG. 1 depicts an example of a system 100 to support file encryption.
  • the system 100 includes a host 102, an authentication engine 104, a key database 106, a config rule database 108, and a file encryption engine 110.
  • the host 102 may include any known or convenient computer system.
  • the host 102 may function as a file server or have some other functionality.
  • the host 102 includes a file system 112, a filter driver 114, and a processor 1 16 coupled to a bus 118.
  • the functionality of the file system 112, filter driver 114, processor 1 16, and bus 1 18 are well- known in the relevant art, so a detailed description of these components is deemed unnecessary. It may be noted that bus-less architectures may be used in alternative embodiments.
  • the filter driver 114 is inserted, as part of the operating system, between the file system 1 12 and a process that will use files from the file system 1 12.
  • the filter driver 114 applies the configuration rules provided from the config rule database 108 by the authentication engine 104.
  • the configuration rules may include, by way of example but not limitation, a rule that everything in a first directory is to be encrypted using a first key provided from the key database 106 by the authentication engine 104. (Alternatively, the first key could be generated locally or received from some place other than the key database 106.)
  • the configuration rules may include a rule that a first user receives encrypted data (e.g., cipher text) when accessing a particular file.
  • the authentication engine 104 may include any known or convenient computer system.
  • the authentication engine 104 may or may not be implemented as an appliance that is coupled to the host 102, or as some other device or computer coupled to the host 102 through, e.g., a network connection.
  • the authentication engine 104 provides keys and configuration (encryption) rules from the key database 106 and the config rule database 108, respectively, to the host 102.
  • the term "engine,” as used herein, generally refers to any combination of software, firmware, hardware, or other component that is used to effectuate a purpose.
  • the authentication engine 104 may be administered by the same admin who administers the host 102. Alternatively, an admin may be responsible for administering the authentication engine 104, and a lower level administrator may be responsible for administering the host 102. The latter would be more typical in a relatively large enterprise. It may be noted that the administrator of the authentication engine 104 might be able to crack at least some of the security of the host 102 (since the admin of the authentication engine 104 has access to the keys and config rules provided to the host 102), but the reverse is not necessarily true.
  • the file encryption engine 110 is coupled to the host 102.
  • the file encryption engine 1 10 may be on the host 102.
  • executable code of the file encryption engine 110 is stored on or off of the host 102 in secondary memory, and at least partially loaded into primary memory of the host 102 for execution by a processor, such as the processor 116.
  • the file encryption engine 110 may be referred to as including or sharing a computer- readable medium (e.g., memory), including executable software code stored in the computer- readable medium, and including or sharing a processor capable of executing the code on the computer-readable medium.
  • a computer- readable medium e.g., memory
  • executable software code stored in the computer- readable medium
  • processor capable of executing the code on the computer-readable medium e.g., a processor capable of executing the code on the computer-readable medium.
  • the file encryption engine 1 10 may be referred to as being embodied in a computer-readable medium.
  • the host 102 authenticates files in its file system 112 with the authentication engine 104.
  • the authentication engine 104 provides to the host 102 keys from the key database 106 and configuration rules from the config rule database 108.
  • the file encryption engine 110 encrypts, in a first encryption mode, a subset of blocks of a file in the file system 1 12 using one or more of the keys and one or more of the configuration rules.
  • the file encryption engine 1 10 then encrypts, in a second encryption mode, one or more of the blocks of the file.
  • the first encryption mode may include using a block cipher in chained mode for all but a final (potentially partial) cipher block.
  • the final (potentially partial) cipher block may be encrypted in the second encryption mode, which may include using a block cipher in a stream cipher mode.
  • FIG. 2 depicts an example of an encrypted file 200.
  • the encrypted file 200 includes chained ciphertext blocks 202-1 to 202-N (referred to collectively as chained ciphertext blocks 202).
  • the chained ciphertext blocks 202 are a subset of blocks associated with the encrypted file 200. The size of the subset depends upon the number of blocks, which is typically dependent upon the size of the file.
  • the encrypted file 200 includes a streamed ciphertext block 204.
  • the streamed ciphertext block 204 may or may not be a partial block.
  • the streamed ciphertext block 204 is represented, for illustrative purposes only, as smaller than the chained ciphertext blocks 202 so as to illustrate that the streamed ciphertext block 204 may be a partial block.
  • multiple ciphertext blocks could be streamed.
  • the file 200 may include additional data, called metadata, associated with the file and/or the encryption.
  • metadata additional data
  • the overhead can be stored in the file metadata. This may ensure that the file size of the file 200 remains the same before and after encryption.
  • FIGS. 3A and 3B depict examples of how to respectively encrypt and decrypt the chained ciphertext blocks 202 in cipher block chaining (CBC) mode encryption. It may be noted that CBC is but one example of an encryption mode. Any applicable known or convenient technology could be used instead.
  • CBC cipher block chaining
  • FIGS. 4A and 4B depict examples of how to respectively encrypt and decrypt the streamed ciphertext block 204 in cipher feedback (CFB) mode encryption.
  • CFB is but one example of an encryption mode.
  • CFB has at least two advantages over CBC mode: the block cipher is only ever used in the encrypting direction, and the message does not need to be padded to a multiple of the cipher block size. Any applicable known or convenient technology that is capable of encrypting the last block without padding could be used instead.
  • FIG. 5 depicts a flowchart 500 of an example of a method for encrypting a file. This method and other methods are depicted as serially arranged modules. However, modules of the methods may be reordered, or arranged for parallel execution as appropriate.
  • the flowchart 500 starts at module 502 with using a block cipher in chained mode for all but a final cipher block.
  • the chained mode may implement by way of example but not limitation CBC.
  • the flowchart 500 continues to module 504 with picking a new key. Typically, it would be desirable to pick a new key for the last block each time it is encrypted. This would ensure that the last block is never encrypted twice with the same key. In many streaming mode implementations, this is a security risk. (0029) In the example of FIG. 5, the flowchart 500 ends at module 506 with using a block cipher in streamed mode to encrypt the last cipher block. It may be noted that the last cipher block may or may not be a partial block.
  • the algorithms and techniques described herein also relate to apparatus for performing the algorithms and techniques.
  • This apparatus may be specially constructed for the required purposes, or it may comprise a general purpose computer selectively activated or reconfigured by a computer program stored in the computer.
  • a computer program may be stored in a computer readable storage medium, such as, but is not limited to, read-only memories (ROMs), random access memories (RAMs), EPROMs, EEPROMs, magnetic or optical cards, any type of disk including floppy disks, optical disks, CD-ROMs, and magnetic-optical disks, or any type of media suitable for storing electronic instructions, and each coupled to a computer system bus.
  • ROMs read-only memories
  • RAMs random access memories
  • EPROMs erasable programmable read-only memory
  • EEPROMs electrically erasable programmable read-only memory
  • magnetic or optical cards any type of disk including floppy disks, optical disks, CD-ROMs, and magnetic-optical disks, or any type of media suitable

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Hardware Design (AREA)
  • Bioethics (AREA)
  • General Health & Medical Sciences (AREA)
  • Health & Medical Sciences (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Databases & Information Systems (AREA)
  • Storage Device Security (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

A technique for encrypting a file without changing file size may involve encrypting a first set of a plurality of blocks of a file in a first encryption mode using the first set of encryption keys and/or the first set of configuration rules, and a second set of the plurality of blocks of the file in a second encryption mode using a second set of the encryption keys and/or a second set of the configuration rules without causing the file to increase in size before and after the encryption. Here, the first and the second encryption modes are chosen to be different, so are the first and the second sets of the encryption keys and/or the configuration rules to reduce security risk of the file being encrypted.

Description

FILE ENCRYPTION WHILE MAINTAINING FILE SIZE
BACKGROUND
[0001] When a file is encrypted, the encryption may change the size of the file. This may have some undesirable effects. For example, an operating system may work with block sizes of, e.g., 512 bytes. Where encryption adds n additional bytes to a particular 512 byte block, the file system would have to grab two blocks in order to get that particular block, plus the encryption overhead. This can have significant deleterious effects on caching systems that cache blocks of data. As another example, a file utility may allow a seek into a file. If the seek adds 1 megabyte into a file, and there is additional padding from encryption overhead, then the operating system will have to do some additional calculations to take into account the encryption overhead. These are but two examples of why changing file size with encryption can be troublesome. An exhaustive list is not attempted herein.
[0002] Stream ciphers may be used to encrypt files without changing file size, but stream ciphers have problems. For example, security can be compromised if the same stream cipher key is used to encrypt a file twice. For this reason, a stream cipher must use a different key every time a file is encrypted.
(0003] These are but a subset of the problems and issues associated with file encryption, and are intended to characterize weaknesses in the prior art by way of example. The foregoing examples of the related art and limitations related therewith are intended to be illustrative and not exclusive. Other limitations of the related art will become apparent to those of skill in the art upon a reading of the specification and a study of the drawings.
SUMMARY
|0004] The following embodiments and aspects thereof are described and illustrated in conjunction with systems, tools, and methods that are meant to be exemplary and illustrative, not limiting in scope. In various embodiments, one or more of the above-described problems have been reduced or eliminated, while other embodiments are directed to other improvements.
[0005] A technique for encrypting a file without changing file size may involve encrypting a first set of a plurality of blocks of a file in a first encryption mode using the first set of encryption keys and/or the first set of configuration rules, and a second set of the plurality of blocks of the file in a second encryption mode using a second set of the encryption keys and/or a second set of the configuration rules without causing the file to increase in size before and after the encryption. Here, the first and the second encryption modes are chosen to be different, so are the first and the second sets of the encryption keys and/or the configuration rules to reduce security risk of the file being encrypted.
[0006] The proposed system can offer, among other advantages, encrypted files that are the same size as the unencrypted files. This and other advantages of the techniques described herein will become apparent to those skilled in the art upon a reading of the following descriptions and a study of the several figures of the drawings.
BRIEF DESCRIPTION OF THE DRAWINGS
[0007] Embodiments of the invention are illustrated in the figures. However, the embodiments and figures are illustrative rather than limiting; they provide examples of the invention.
[0008] FIG. 1 depicts an example of a system including a file encryption engine.
[0009] FIG. 2 depicts an example of an encrypted file.
[0010] FIGS. 3A and 3B depict examples of how to respectively encrypt and decrypt chained ciphertext block(s) in cipher block chaining (CBC) mode encryption.
[0011] FIGS. 4A and 4B depict examples of how to respectively encrypt and decrypt streamed ciphertext block(s) in cipher feedback (CBF) mode encryption.
[0012] FIG. 5 depicts a flowchart 500 of an example of a method for encrypting a file.
DETAILED DESCRIPTION
[0013] In the following description, several specific details are presented to provide a thorough understanding of embodiments of the invention. One skilled in the relevant art will recognize, however, that the invention can be practiced without one or more of the specific details, or in combination with other components, etc. In other instances, well-known implementations or operations are not shown or described in detail to avoid obscuring aspects of various embodiments, of the invention. [0014] FIG. 1 depicts an example of a system 100 to support file encryption. The system 100 includes a host 102, an authentication engine 104, a key database 106, a config rule database 108, and a file encryption engine 110.
[0015] The host 102 may include any known or convenient computer system. The host 102 may function as a file server or have some other functionality. In an illustrative embodiment, the host 102 includes a file system 112, a filter driver 114, and a processor 1 16 coupled to a bus 118. The functionality of the file system 112, filter driver 114, processor 1 16, and bus 1 18 are well- known in the relevant art, so a detailed description of these components is deemed unnecessary. It may be noted that bus-less architectures may be used in alternative embodiments.
[0016] Conceptually, the filter driver 114 is inserted, as part of the operating system, between the file system 1 12 and a process that will use files from the file system 1 12. The filter driver 114 applies the configuration rules provided from the config rule database 108 by the authentication engine 104. The configuration rules may include, by way of example but not limitation, a rule that everything in a first directory is to be encrypted using a first key provided from the key database 106 by the authentication engine 104. (Alternatively, the first key could be generated locally or received from some place other than the key database 106.) As another example, the configuration rules may include a rule that a first user receives encrypted data (e.g., cipher text) when accessing a particular file.
[0017] The authentication engine 104 may include any known or convenient computer system. The authentication engine 104 may or may not be implemented as an appliance that is coupled to the host 102, or as some other device or computer coupled to the host 102 through, e.g., a network connection. The authentication engine 104 provides keys and configuration (encryption) rules from the key database 106 and the config rule database 108, respectively, to the host 102. The term "engine," as used herein, generally refers to any combination of software, firmware, hardware, or other component that is used to effectuate a purpose.
[0018] The authentication engine 104 may be administered by the same admin who administers the host 102. Alternatively, an admin may be responsible for administering the authentication engine 104, and a lower level administrator may be responsible for administering the host 102. The latter would be more typical in a relatively large enterprise. It may be noted that the administrator of the authentication engine 104 might be able to crack at least some of the security of the host 102 (since the admin of the authentication engine 104 has access to the keys and config rules provided to the host 102), but the reverse is not necessarily true.
[0019) The file encryption engine 110 is coupled to the host 102. In an alternative embodiment, the file encryption engine 1 10 may be on the host 102. By "on the host" it is intended to mean that executable code of the file encryption engine 110 is stored on or off of the host 102 in secondary memory, and at least partially loaded into primary memory of the host 102 for execution by a processor, such as the processor 116.
[0020] The file encryption engine 110 may be referred to as including or sharing a computer- readable medium (e.g., memory), including executable software code stored in the computer- readable medium, and including or sharing a processor capable of executing the code on the computer-readable medium. As such, the file encryption engine 1 10 may be referred to as being embodied in a computer-readable medium.
[0021] In the example of FIG. 1, in operation, the host 102 authenticates files in its file system 112 with the authentication engine 104. The authentication engine 104 provides to the host 102 keys from the key database 106 and configuration rules from the config rule database 108. The file encryption engine 110 encrypts, in a first encryption mode, a subset of blocks of a file in the file system 1 12 using one or more of the keys and one or more of the configuration rules. The file encryption engine 1 10 then encrypts, in a second encryption mode, one or more of the blocks of the file. The first encryption mode may include using a block cipher in chained mode for all but a final (potentially partial) cipher block. The final (potentially partial) cipher block may be encrypted in the second encryption mode, which may include using a block cipher in a stream cipher mode.
[0022] FIG. 2 depicts an example of an encrypted file 200. In the example of FIG. 2, the encrypted file 200 includes chained ciphertext blocks 202-1 to 202-N (referred to collectively as chained ciphertext blocks 202). The chained ciphertext blocks 202 are a subset of blocks associated with the encrypted file 200. The size of the subset depends upon the number of blocks, which is typically dependent upon the size of the file. In the example of FIG. 2, the encrypted file 200 includes a streamed ciphertext block 204. The streamed ciphertext block 204 may or may not be a partial block. In the example of FIG. 2, the streamed ciphertext block 204 is represented, for illustrative purposes only, as smaller than the chained ciphertext blocks 202 so as to illustrate that the streamed ciphertext block 204 may be a partial block. In an illustrative embodiment, there is only one streamed ciphertext block (the last block) for a file. However, in an alternative embodiment, multiple ciphertext blocks could be streamed.
[0023] The file 200 may include additional data, called metadata, associated with the file and/or the encryption. Thus, if the chained ciphertext blocks 202 have encryption overhead, the overhead can be stored in the file metadata. This may ensure that the file size of the file 200 remains the same before and after encryption.
(0024) FIGS. 3A and 3B depict examples of how to respectively encrypt and decrypt the chained ciphertext blocks 202 in cipher block chaining (CBC) mode encryption. It may be noted that CBC is but one example of an encryption mode. Any applicable known or convenient technology could be used instead.
(0025] FIGS. 4A and 4B depict examples of how to respectively encrypt and decrypt the streamed ciphertext block 204 in cipher feedback (CFB) mode encryption. It may be noted that CFB is but one example of an encryption mode. CFB has at least two advantages over CBC mode: the block cipher is only ever used in the encrypting direction, and the message does not need to be padded to a multiple of the cipher block size. Any applicable known or convenient technology that is capable of encrypting the last block without padding could be used instead.
[0026] FIG. 5 depicts a flowchart 500 of an example of a method for encrypting a file. This method and other methods are depicted as serially arranged modules. However, modules of the methods may be reordered, or arranged for parallel execution as appropriate.
[0027] In the example of FIG. 5, the flowchart 500 starts at module 502 with using a block cipher in chained mode for all but a final cipher block. The chained mode may implement by way of example but not limitation CBC.
[0028] In the example of FIG. 5, the flowchart 500 continues to module 504 with picking a new key. Typically, it would be desirable to pick a new key for the last block each time it is encrypted. This would ensure that the last block is never encrypted twice with the same key. In many streaming mode implementations, this is a security risk. (0029) In the example of FIG. 5, the flowchart 500 ends at module 506 with using a block cipher in streamed mode to encrypt the last cipher block. It may be noted that the last cipher block may or may not be a partial block.
[0030) Some portions of the detailed description are presented in terms of algorithms and symbolic representations of operations on data bits within a computer memory. These algorithmic descriptions and representations are the means used by those skilled in the data processing arts to most effectively convey the substance of their work to others skilled in the art. An algorithm is here, and generally, conceived to be a self-consistent sequence of operations leading to a desired result. The operations are those requiring physical manipulations of physical quantities. Usually, though not necessarily, these quantities take the form of electrical or magnetic signals capable of being stored, transferred, combined, compared, and otherwise manipulated. It has proven convenient at times, principally for reasons of common usage, to refer to these signals as bits, values, elements, symbols, characters, terms, numbers, or the like.
[0031] It should be borne in mind, however, that all of these and similar terms are to be associated with the appropriate physical quantities and are merely convenient labels applied to these quantities. Unless specifically stated otherwise as apparent from the following discussion, it is appreciated that throughout the description, discussions utilizing terms such as "processing" or "computing" or "calculating" or "determining" or "displaying" or the like, refer to the action and processes of a computer system, or similar electronic computing device, that manipulates and transforms data represented as physical (electronic) quantities within the computer system's registers and memories into other data similarly represented as physical quantities within the computer system memories or registers or other such information storage, transmission or display devices.
[0032] The algorithms and techniques described herein also relate to apparatus for performing the algorithms and techniques. This apparatus may be specially constructed for the required purposes, or it may comprise a general purpose computer selectively activated or reconfigured by a computer program stored in the computer. Such a computer program may be stored in a computer readable storage medium, such as, but is not limited to, read-only memories (ROMs), random access memories (RAMs), EPROMs, EEPROMs, magnetic or optical cards, any type of disk including floppy disks, optical disks, CD-ROMs, and magnetic-optical disks, or any type of media suitable for storing electronic instructions, and each coupled to a computer system bus. [0033] As used herein, the term "embodiment" means an embodiment that serves to illustrate by way of example but not limitation.
(0034] It will be appreciated to those skilled in the art that the preceding examples and embodiments are exemplary and not limiting to the scope of the present invention. It is intended that all permutations, enhancements, equivalents, and improvements thereto that are apparent to those skilled in the art upon a reading of the specification and a study of the drawings are included within the true spirit and scope of the present invention. It is therefore intended that the following appended claims include all such modifications, permutations and equivalents as fall within the true spirit and scope of the present invention.

Claims

CLAIMSWhat is claimed is:
1. A system, comprising: a host having a file stored in a file system of the host, wherein the file comprises of a plurality of blocks; an authentication engine, which while in operation, provides one or more encryption keys and/or one or more configuration rules to the host; a file encryption engine, which while in operation: encrypts a first set of the plurality of blocks of the file in a first encryption mode using a first set of the one or more encryption keys and/or a first set of the one or more configuration rules; encrypts a second set of the plurality of blocks of the file in a second encryption mode using a second set of the one or more encryption keys and/or a second set of the one or more configuration rules.
2. The system of claim 1, further comprising: a key database operable to manage and store the one or more encryption keys.
3. The system of claim 1 , further comprising: a config rule database operable to manage and store the one or more configuration rules.
4. The system of claim 1 , wherein: the file also comprises a metadata associated with the file and/or the first and/or second mode of encryption.
5. The system of claim 4, wherein: the metadata stores encryption overhead from encrypting the file under the first and/or second mode of encryption.
6. The system of claim 1, wherein: the first and the second set of the one or more encryption keys are not identical.
7. The system of claim 1, wherein: the first and the second set of the one or more configuration rules are not identical.
8. The system of claim 1 , wherein: the first set of the plurality of blocks are chained ciphertext blocks.
9. The system of claim 1 , wherein: the first encryption mode encrypts the first set of the plurality of blocks in cipher block chaining mode.
10. The system of claim 1 , wherein: the first set of the plurality of blocks includes all but a final block of the plurality of blocks of the file.
11. The system of claim 1 , wherein: the second encryption mode encrypts the second set of the plurality of blocks without padding the second set of the plurality of blocks in size.
12. The system of claim 1 , wherein: the second set of the plurality of blocks are streamed ciphertext blocks.
13. The system of claim 1 , wherein: the second encryption mode encrypts the second set of the plurality of blocks in cipher feedback mode.
14. The system of claim 1 , wherein: the first set of the plurality of blocks includes only a final block of the plurality of blocks of the file.
15. The system of claim 14, wherein: the final block of the one or more blocks of the file is a partial block.
16. The system of claim 1 , wherein: the file encryption engine, while in operation: decrypts the first set of the plurality of blocks of the file in the first encryption mode using the first set of the one or more encryption keys and/or the first set of the one or more configuration rules; decrypts the second set of the plurality of blocks of the file in the second encryption mode using the second set of the one or more encryption keys and/or the second set of the one or more configuration rules.
17. A method, comprising: choosing a first set of one or more encryption keys and/or a first set of one or more configuration rules; encrypting a first set of a plurality of blocks of a file in a first encryption mode using the first set of the one or more encryption keys and/or the first set of the one or more configuration rules; choosing a second set of the one or more encryption keys and/or a second set of the one or more configuration rules; encrypting a second set of the plurality of blocks of the file in a second encryption mode using the second set of the one or more encryption keys and/or the second set of the one or more configuration rules.
18. The method of claim 17, further comprising: managing and storing the one or more encryption keys via a key database.
19. The method of claim 17, further comprising: managing and storing the one or more configuration rules via a config rule database.
20. The method of claim 17, further comprising: encrypting the first and the second set of the plurality of blocks of files in different encryption modes.
21. The method of claim 17, further comprising: encrypting the first and the second set of the plurality of blocks of files via different sets of encryption keys and/or different sets of configuration rules.
22. The method of claim 17, further comprising: encrypting the first and the second set of the plurality of blocks, wherein the first set includes all but a final block of the file while the second set includes the file block of the file only.
23. The method of claim 17, farther comprising: storing encryption overhead from encrypting the file under the first and/or second mode of encryption.
24. A system, comprising: means for choosing a first set of one or more encryption keys and/or a first set of one or more configuration rules; means for encrypting a first set of a plurality of blocks of a file in a first encryption mode using the first set of the one or more encryption keys and/or the first set of the one or more configuration rules; means for choosing a second set of the one or more encryption keys and/or a second set of the one or more configuration rules; means for encrypting a second set of the plurality of blocks of the file in a second encryption mode using the second set of the one or more encryption keys and/or the second set of the one or more configuration rules, wherein the first and the second sets of the encryption keys and/or the first and the second set of the configuration rules are not identical.
PCT/US2008/052227 2007-01-26 2008-01-28 File encryption while maintaining file size Ceased WO2008092166A2 (en)

Priority Applications (3)

Application Number Priority Date Filing Date Title
EP08728422A EP2106641A4 (en) 2007-01-26 2008-01-28 File encryption while maintaining file size
US12/448,577 US20100095115A1 (en) 2007-01-26 2008-01-28 File encryption while maintaining file size
JP2009547461A JP2010517447A (en) 2007-01-26 2008-01-28 File encryption while maintaining file size

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US89757707P 2007-01-26 2007-01-26
US60/897,577 2007-01-26

Publications (2)

Publication Number Publication Date
WO2008092166A2 true WO2008092166A2 (en) 2008-07-31
WO2008092166A3 WO2008092166A3 (en) 2008-09-18

Family

ID=39645230

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2008/052227 Ceased WO2008092166A2 (en) 2007-01-26 2008-01-28 File encryption while maintaining file size

Country Status (4)

Country Link
US (1) US20100095115A1 (en)
EP (1) EP2106641A4 (en)
JP (1) JP2010517447A (en)
WO (1) WO2008092166A2 (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2011081738A3 (en) * 2009-12-15 2011-09-09 Microsoft Corporation Verifiable trust for data through wrapper composition
US10275603B2 (en) 2009-11-16 2019-04-30 Microsoft Technology Licensing, Llc Containerless data for trustworthy computing and data services
US10348693B2 (en) 2009-12-15 2019-07-09 Microsoft Technology Licensing, Llc Trustworthy extensible markup language for trustworthy computing and data services

Families Citing this family (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9165154B2 (en) * 2009-02-16 2015-10-20 Microsoft Technology Licensing, Llc Trusted cloud computing and services framework
US8341427B2 (en) * 2009-02-16 2012-12-25 Microsoft Corporation Trusted cloud computing and services framework
KR101106604B1 (en) * 2011-06-14 2012-01-20 펜타시큐리티시스템 주식회사 Method and device for data security using feature retention encryption
US9038194B2 (en) * 2011-11-30 2015-05-19 Red Hat, Inc. Client-side encryption in a distributed environment
US20140258720A1 (en) * 2013-03-11 2014-09-11 Barracuda Networks, Inc. Systems and methods for transparent per-file encryption and decryption via metadata identification
JP6162556B2 (en) * 2013-09-18 2017-07-12 株式会社メガチップス Storage device and information processing system
US9246890B2 (en) * 2014-02-18 2016-01-26 Oracle International Corporation PGP encrypted data transfer
US10298555B2 (en) 2014-04-04 2019-05-21 Zettaset, Inc. Securing files under the semi-trusted user threat model using per-file key encryption
US10873454B2 (en) 2014-04-04 2020-12-22 Zettaset, Inc. Cloud storage encryption with variable block sizes
US9363247B2 (en) * 2014-04-04 2016-06-07 Zettaset, Inc. Method of securing files under the semi-trusted user threat model using symmetric keys and per-block key encryption
US10043029B2 (en) 2014-04-04 2018-08-07 Zettaset, Inc. Cloud storage encryption
JP6368531B2 (en) * 2014-04-28 2018-08-01 達広 白井 Cryptographic processing apparatus, cryptographic processing system, and cryptographic processing method
CN108694189B (en) * 2017-04-07 2022-01-21 微软技术许可有限责任公司 Management of commonly owned database systems

Family Cites Families (17)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP3035889B2 (en) * 1997-04-23 2000-04-24 松下電器産業株式会社 Encryption processing device and decryption processing device
JP3442010B2 (en) * 1997-04-23 2003-09-02 松下電器産業株式会社 Encryption processing device and decryption processing device
JP3442011B2 (en) * 1997-04-23 2003-09-02 松下電器産業株式会社 Encryption processing device and decryption processing device
US6679584B2 (en) * 1997-07-15 2004-01-20 Silverbrook Research Pty Ltd. High volume pagewidth printing
US6976165B1 (en) * 1999-09-07 2005-12-13 Emc Corporation System and method for secure storage, transfer and retrieval of content addressable information
US6654888B1 (en) * 1999-12-31 2003-11-25 International Business Machines Corporation Installing and controlling trial software
JP2003204323A (en) * 2000-12-21 2003-07-18 Yasumasa Uyama Secret communication method
US7043637B2 (en) * 2001-03-21 2006-05-09 Microsoft Corporation On-disk file format for a serverless distributed file system
JP2002297030A (en) * 2001-03-29 2002-10-09 Toshiba Corp Cryptographic processing device, cryptographic processing method and program
GB2374260B (en) * 2001-10-12 2003-08-13 F Secure Oyj Data encryption
JP3925218B2 (en) * 2002-01-30 2007-06-06 ソニー株式会社 Streaming system and streaming method, streaming server and data distribution method, client terminal and data decoding method, program and recording medium
CA2496664C (en) * 2002-08-23 2015-02-17 Exit-Cube, Inc. Encrypting operating system
JP2004295091A (en) * 2003-03-07 2004-10-21 Matsushita Electric Ind Co Ltd Encryption device, inverse encryption device and data reproduction device
JP2005196582A (en) * 2004-01-08 2005-07-21 Nippon Joho Create Kk Data backup system, and data backup method
JP4720136B2 (en) * 2004-09-24 2011-07-13 富士ゼロックス株式会社 ENCRYPTION DEVICE, ENCRYPTION METHOD, AND PROGRAM
US20060232826A1 (en) * 2005-04-13 2006-10-19 Hagai Bar-El Method, device, and system of selectively accessing data
US7508609B2 (en) * 2006-10-25 2009-03-24 Spectra Logic Corporation Formatted storage media providing space for encrypted text and dedicated space for clear text

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
See references of EP2106641A4 *

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10275603B2 (en) 2009-11-16 2019-04-30 Microsoft Technology Licensing, Llc Containerless data for trustworthy computing and data services
WO2011081738A3 (en) * 2009-12-15 2011-09-09 Microsoft Corporation Verifiable trust for data through wrapper composition
US9537650B2 (en) 2009-12-15 2017-01-03 Microsoft Technology Licensing, Llc Verifiable trust for data through wrapper composition
US10348700B2 (en) 2009-12-15 2019-07-09 Microsoft Technology Licensing, Llc Verifiable trust for data through wrapper composition
US10348693B2 (en) 2009-12-15 2019-07-09 Microsoft Technology Licensing, Llc Trustworthy extensible markup language for trustworthy computing and data services

Also Published As

Publication number Publication date
US20100095115A1 (en) 2010-04-15
WO2008092166A3 (en) 2008-09-18
EP2106641A2 (en) 2009-10-07
EP2106641A4 (en) 2011-12-14
JP2010517447A (en) 2010-05-20

Similar Documents

Publication Publication Date Title
US20100095115A1 (en) File encryption while maintaining file size
US11126718B2 (en) Method for decrypting data encrypted by ransomware
US20100070778A1 (en) Secure file encryption
EP1985057B1 (en) Method of transferring digital rights
US8107621B2 (en) Encrypted file system mechanisms
US20060232826A1 (en) Method, device, and system of selectively accessing data
KR101405720B1 (en) Accelerated cryptography with an encryption attribute
US20240061790A1 (en) Locally-stored remote block data integrity
CN110855433B (en) Data encryption method and device based on encryption algorithm and computer equipment
US9762548B2 (en) Controlling encrypted data stored on a remote storage device
US8181028B1 (en) Method for secure system shutdown
US20100095132A1 (en) Protecting secrets in an untrusted recipient
US20120144192A1 (en) Method, device, and system for managing permission information
WO2020044095A1 (en) File encryption method and apparatus, device, terminal, server, and computer-readable storage medium
CN114556869A (en) Key management for encrypted data
EP4217895A1 (en) Metadata tweak for channel encryption differentiation
US8532300B1 (en) Symmetric is encryption key management
US8402278B2 (en) Method and system for protecting data
US9571273B2 (en) Method and system for the accelerated decryption of cryptographically protected user data units
CN116881945B (en) A solid state hard disk encryption and decryption method, system and electronic device based on TPCM
CN105515757B (en) Security information exchange device based on credible performing environment
US20230208821A1 (en) Method and device for protecting and managing keys
CN112733189A (en) System and method for realizing file storage server side encryption
CN112052432A (en) Terminal device authorization method and device
CN108173906A (en) Installation package download method, device, storage medium and electronic equipment

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 08728422

Country of ref document: EP

Kind code of ref document: A2

WWE Wipo information: entry into national phase

Ref document number: 2008728422

Country of ref document: EP

WWE Wipo information: entry into national phase

Ref document number: 12448577

Country of ref document: US

ENP Entry into the national phase

Ref document number: 2009547461

Country of ref document: JP

Kind code of ref document: A

NENP Non-entry into the national phase

Ref country code: DE