This application is related to the copending and commonly assigned patent application Ser. No. 09/977,161 entitled “Method, System, and Program for Encoding and Decoding Input Data”, which patent application is incorporated herein by reference in its entirety.
1. Field of the Invention
The present invention relates to a method, system, and program for securely providing keys to encode and decode data in a storage cartridge.
2. Description of the Related Art
Protecting and securing data is one of the primary concerns that must be addressed when designing an information management system, whether for a single user, small business or large scale data warehouse. Oftentimes data may be continually archived on various storage medium, such as tape cassettes or optical disks. When archiving data on tape or other removable storage medium, one security concern is that someone will steal the tape and then access the data. Also, if the tape can be mounted into a tape drive through remote commands transmitted over a network, then there is a concern that someone may “hack” into the system, mount the tape or other storage medium in a drive and then access the data.
One technique to secure data is to encrypt the data on the tape. However, data on an archival medium, such as tape or optical disk tape is often compressed. Performing encryption and compression as well as decompression and decryption on very large data sets, such as an entire tape cartridge which can comprise 100 gigabytes (GB), can be computationally expensive and take a considerable amount of time.
Moreover, the compression and encryption operations are usually performed sequentially in separate steps. The data is first compressed and then encrypted because encrypted data cannot typically be compressed. Performing compression and encryption sequentially requires scanning the data twice, which requires still further computational resources and time. Still further, compression may be performed by dedicated integrated circuits, whereas most popular encryption algorithms, such as the public/private key encryption and cipher schemes, are typically implemented using software, which is slower than using a dedicated integrated circuit.
Another security technique for removable storage media is to program the drive controller that controls the read/write head that physically accesses the storage medium to only allow access to a password protected removable cartridge if the user enters the password. For instance, with the JAZ** and ZIP** storage cartridges produced by Iomega Corporation**, the user may password protect the storage cartridge. In such case, the controller in the Iomega drive interface is programmed to only allow access to the data on the storage cartridge if the user enters the password assigned to that storage cartridge. This process is further described in U.S. Pat. No. 6,104,561. The security feature of such storage cartridges is very fast because the data itself does not have to be decrypted. Instead, the drive provides immediate access to the data upon receiving the recognizable password. Although such a system may prevent hackers from access a mounted drive remotely over a network, someone who physically misappropriates the password protected cartridge can still read the data on the storage medium because the data is not encrypted on the storage medium. All one would have to instruct the interface controller to ignore the password feature and access the data.
Thus, there is a need in the art for improved protection schemes in a data storage system using removable storage media.
Provided is a method, system, and program for enabling access to data in a storage medium within one of a plurality of storage cartridges capable of being mounted into a interface device. An association is provided of at least one coding key to a plurality of storage cartridges. A determination is made of one coding key associated with one target storage cartridge, wherein the coding key is capable of being used to access data in the storage medium within the target storage cartridge. The determined coding key is encrypted. The coding key is subsequently decrypted to use to decode and code data stored in the storage medium.
In further implementations, the association of the at least one coding key to the plurality of storage cartridges associates a different key with each storage cartridge, wherein the key associated with one storage cartridge is used to code data written to and decode data read from the storage medium of the storage cartridge.
Still further, the encrypted coding key is transmitted to the interface device, wherein the interface device decrypts the coding key to use to decode and code data stored in the storage medium. In such implementations, the coding key is encrypted by encrypting the coding key with a first key, wherein a second key used by the interface device is capable of decrypting the coding key encrypted with the first key.
Further provided is a method, system, and program for accessing data in a removable storage cartridge including a storage medium. An encrypted coding key is received from a host system and decrypted. The coding key is used to encode data written to the storage medium and decode data read from the storage medium.
In such implementations, encoding the data with the coding key may compress the data and wherein decoding the data written to the storage medium may decompress the data, wherein the data can only be encoded or decoded using the coding key.
Still further, the coding key is encrypted by a first key maintained at the host system. In such case, a second key is maintained that is capable of decrypting data encrypted using the first key, wherein the second key is used to decrypt the coding key encrypted with the first key.
The described implementations provide a technique for securely managing coding keys that are used to encode and decode data in storage cartridges. The coding keys themselves are encrypted to prevent unauthorized access to the coding key, which could then be used to decode and access the data in the storage cartridges.
Referring now to the drawings in which like reference numbers represent corresponding parts throughout:
In the following description, reference is made to the accompanying drawings which form a part hereof and which illustrate several embodiments of the present invention. It is understood that other embodiments may be utilized and structural and operational changes may be made without departing from the scope of the present invention
The encoder logic 4 receives an input data stream 8 and a Most Recently Used (MRU) key 10, such as that shown in
In
In certain implementations, the encoder logic 4 uses a lossless Lempel-Ziv (LZ) variable length encoding procedure. In one implementation, the encoder 4 uses the LZ1 Adaptive Lossless Data Compression (ALDC) algorithm. The LZ1 algorithm achieves data compression by using a history buffer that the encoder 4 and decoder 6 initialize and update in the same manner. In LZ1, if a string, i.e., two or more sequential bytes, in the input data 8 currently being scanned matches one previously scanned string which is still in the sliding history buffer, the encoder 4 replaces the currently scanned string with a reference, referred to as a copy pointer, to the previously scanned string in the history buffer, specifying a location and a byte count or length. Because the copy pointer can comprise fewer bits than the string being replaced, compression is achieved. If a byte is encountered which cannot be output as a continuation of a previous copy pointer, or as a first byte of a new copy pointer, it is output instead separately in what is called a literal. A literal in standard ALDC is simply the input byte prepended with a “0” to distinguish it from a copy pointer, to which is prepended with a “1”. A literal byte is output for those bytes in the input data 8 that were not part of strings replaced with references or pointers to a matching string value in a sliding history buffer, in the case of LZ1 compression, or a compression dictionary, in the case of LZ2 compression.
In certain implementations, the encoder 4 logic encodes the literal bytes not part of strings replaced with copy pointers using the compression scheme described in the commonly assigned U.S. Pat. No. 6,218,940 entitled “Literal Handling in LZ Compression Employing MRU/LRU Encoding”, which patent is incorporated herein by reference in its entirety. To compress the literals, the encoder 4 maintains an MRU list 20, which in its initial state is set to the MRU key 10. Upon scanning a literal, the encoder 4 determines the entry in the MRU list 20 having the byte value matching the input byte value. The encoder 4 then replaces the scanned literal with a reference addressing the entry in the MRU list 20 including the matching byte value. The matching value in the referenced entry of the MRU list 20 is then promoted to the top, or most recently used end, of the MRU list 20, where its reference address changes to the first entry in the MRU list 20.
To compress the input data 8 stream using LZ1 compression techniques, the encoder 4 maintains a sliding history buffer 22, which includes the strings in the input data 8 referenced by the generated copy pointers. To decode data, the decoder 6 would identically update and utilize the MRU list 20 and history buffer 22 when performing the inverse operations of the encoder 4 to replace the copy pointers referencing the history buffer 22 with the referenced string and replace references to the MRU list 20 with the byte value in the referenced entry in the MRU list 20 to produce the original input data 8 as part of a decoding operation.
In certain implementation, all copy pointers are signified as such by a prepended binary “1”. The encoder 4 replaces a literal byte with one of the following values:
The above described scheme for coding the references to the MRU list 20 that replace the literals in the input data 8 optimize compression, because the fewest number of bits, 8, are used to represent the most used MRU list 20 entries, the next fewest number of bits, 9, are used to represent the next most used MRU list 20 entries, and the most number of bits, 10, are used to represent the least recently used MRU list 20 entries.
To decode the encoded output data 12, the decoder 6 would set the MRU list 20 to the value of the MRU key 10 and the history buffer 22 to the initial value according to the LZ1 algorithm and then scan the output data 12. If the first bit of a reference code is “1”, then the reference code is a copy pointer, whose data can be determined from the current state of the history buffer 22. If the first bits are one of the literal value indicators, e.g., “00”, “010” or “011”, then the decoder 6 would use the MRU reference to access the entry in the current MRU list 20 within the section of the MRU list 20 associated with the prepended value, i.e., the first 64 entries if the prepended value is “00”, the second 64 entries if the prepended value is “010” and the last 128 entries if the prepended value is “011”. In this way, the reference code for the literal is used to access the entry in the MRU list 20 and replace the MRU reference in the output data 12 with the value in the accessed MRU list 20 entry. The decoder 6 would perform the same actions as the encoder 4 in updating the MRU list 20 and the history buffer 22 while processing the output data 12. The decoder logic 6 would generate the decoded output data 16.
Because the output data 12 was encoded using an unascertainable MRU key 10, the output data 12 is effectively encrypted, unless one can obtain the MRU key 10.
The described encoder logic 4 and decoder logic 6 may be utilized in many environments. For instance, a storage device, such as a tape drive or hard disk drive may include both the encoder 4 and decoder 6 logic to use to encode/encrypt and decode/decrypt data in the storage device, e.g., hard disk drive or tape cartridge. Alternatively, the encoder logic 4 may reside on one computer and the decoder logic 6 may reside on another computer, whereby a user at one computer would encode data and generate the MRU key 10, then transmit the MRU key 10 to a user at another computer including the decode logic 6 to use to decode/decrypt the data. For security purposes, the user may transfer the MRU key 10 on a removable storage device, e.g., diskette, memory stick, etc., to the other user. Alternatively, the user may encrypt the MRU key 10 with a password or using public/private key encryption and transfer to the other user, who would then decrypt the MRU key 10 using the password or asymmetric public/private key.
With the logic of
If (at block 310) an MRU reference was generated for a literal, then the encoder 204 generates (at block 312) a single binary random number from the first pseudo-random number generator. If (at block 314) the generated binary random number is one, then the encoder 204 performs step 74 in
Otherwise, from the “no” branch of
First, random number generator (RNG) 234 generates (at block 354) a pseudo random number. The scrambler 238 rearranges (at block 356) the ordering of the 32 bits according to the value of the generated pseudo-random number, which may be different for each 32 bit scramble, in a manner known in the art. There are 32 factorial (32!) possible unique bit reorderings (scrambles) of any 32 bit word. However, in certain implementations, the scrambler 238 may only allow only a small subset of these. For instance, the number of allowed scrambles or orders may be defined by the number of possible combinations of the input pseudo-random number (e.g. if the pseudo-random number used to scramble the 32 bit package is itself 32 bits long then there are only roughly 4 billion scrambles possible. However, in the prior art, a simple any bit to any bit scrambler uses 80 bits, which can represent a huge number, though this is still a significantly smaller number than 32 factorial).
Second, random number generator (RNG) 235 generates a further random number that is XOR'd (at block 360) with the scrambled 32 bit package. Alternatively, the random number generator 234 may be used to generate the random number XOR'd with the scrambled 32 bit package. The combination of the scrambling in response to a pseudo-random number generated by 234 and the XOR generated by 235 is to create an encrypted compressed data stream. In further implementations, the scramble and XOR operations on the 32 bit package may be performed some number of times beyond the first time. In such implementations, a new pseudo-random can be used for each iteration by either re-use of the same random number generator to generate a new number, or by use of a separate random number generator. Similarly the scrambling and XOR'ing can be done with separate circuits or by re-use of the same circuits one further time per iteration.
Finally after the scramble and XOR operations have been performed some number of times, there are recording techniques such as those described in the LTO tape format, where locations within the decompressed data stream where decompression can begin, known as access points, are stored as the compressed data stream is created. These access points themselves can be encrypted such that the start locations within the compressed data stream are unknown. Similarly the valid data length within a data set denotes the end of a compressed data stream and this too can be encoded. Since access points and valid data lengths are typically recorded in an information table such as a Data Set Information Table (DSIT) in the LTO format, they can be software encrypted so that neither the start or stop location within data sets are known. These software encryptors can be pseudo-random number algorithms which use as a seed some set of bits or bytes gathered from the 256 byte key.
For each segment i, a loop is performed at blocks 414 through 426 to decode/decrypt each reference code j in segment i. At block 416, the decoder 206 uses the second random number generator 232 to generate a random number and exclusive OR (XOR) with the first three bits of reference code j to enable determination as to whether the reference code j is a copy pointer, indicated by a “1” in the first bit or a MRU reference, indicated by a “00”, “010” or “011” in the first three bits. If (at block 418) the first bit is a “1”, then the decoder 206 treats the reference code as a copy pointer and uses (at block 420) the copy pointer to replace the reference code j with the referenced value in the history buffer 222 in a manner known in the LZ1 art. Otherwise, the decoder 206 performs (at block 422) the inverse of steps 56 to 66 in
The logic of
The further techniques of the described implementations using random numbers requires knowledge of the decoder logic 206 and specific algorithms of the pseudo random number generators 230, 232, 234, and 235, as well as knowledge of which bits from the MRU key 10 are used to seed the random number generators, before decryption can even be attempted. Moreover, even if such knowledge of the operation of the decoder 206 could be obtained, a third party attempting to break the encryption performed by the logic of
Once the MRU key 10 is generated, it may then be deployed to provide data security in a data storage system. For an individual user, once the MRU key 10 is generated, the individual user may store the key on a removable storage medium, e.g., diskette, storage cartridge, key chain storage devices (e.g., the Universal Serial Bus (USB) small hard drive that can fit in the pocket or attach to a key chain), etc. Alternatively, the individual user may further encrypt the MRU key 10 using a password protection scheme, such as the use of a user entered password as a key to encrypt and decrypt data in a manner known in the art. In alternative implementations, instead of maintaining the actual MRU key 10, the user may maintain a seed value used to generate the key, and then generate the MRU key 10 on demand from the seed value.
The host 500 would transmit I/O requests to the data interface device 502 via a network 504, such as an Intranet, the Internet, a Local Area Network (LAN), Wide Area Network (WAN), Storage Area Network (SAN), etc., using any communication protocol known in the art, e.g., TCP/IP, Fibre Channel, Ethernet, etc. The host 500 may request to read or write data with respect to a volume that is stored on a particular data storage cartridge 506a, b . . . n. If the requested cartridge 506a, b . . . n is not currently mounted in the interface device 502, then the requested cartridge 504a, b . . . n would have to be mounted into the interface device 502. In a storage library system, such as with tape library systems known in the art, a robotic arm can access the storage cartridges 504a, b . . . n and mount and dismount storage cartridges 504a, b . . . n from the drive interfaces 502 to provide access to data on the storage cartridges 504a, b . . . n. Alternatively, a person can be alerted by the system to dismount and mount storage cartridges 504a, b . . . n into the drive.
To securely maintain the MRU keys in the storage system, described implementations utilize the public key cryptography standards. Public key cryptography utilizes a key pair comprising a public key and private key, and either can encrypt or decrypt data. A user maintains a private key and distributes public keys to others. One can send a secret message to a recipient by encrypting the message with the recipient's public key and then transmitting the message to the recipient because the private key is known only to the recipient of the message, whereas the public key is known to everyone. If the recipient protects the private key, then the recipient should be the only one able to decrypt the message using the private key. A public key algorithm is the algorithm used for encrypting and decrypting data with the public and private keys. Public key algorithms include the Rivest, Shamir, and Adleman (RSA) algorithm, or may include any public key encryption algorithm known in the art, such as Diffie and Hellman. Further details of public key encryption is described in the publication “An Overview of the PKCS Standards,” RSA Laboratories Technical Note, by Burton S. Kaliski, Jr. (1993) and “Handbook of Applied Cryptography,” by Alfred J. Menezes, Paul C. van Oorschot, and Scott A. Vanstone (1996), which publications are incorporated herein by reference in their entirety.
The following notation are used to describe encryption keys used with certain implementations of the invention.
Upon receiving (at block 570) the (MRU key)I 724 for a storage cartridge 506a, b . . . n, the controller 502 decrypts (at block 572) the encrypted (MRU key)I using the drive interface private key 514 (JI), and may then use the MRU key 510 to encode data being written to the storage cartridge. The I/O manager 516 further encrypts (at block 556) the generated MRU key with the host public key 532 KH and transmits (at block 558) the encrypted (MRU Key)H 526 to the data interface device 502. Upon receiving (at block 574) the (MRU key)H 526 for one storage cartridge 506a, b . . . n, the controller 502 writes (at block 576) the encrypted (MRU key)H 526 to the storage cartridge 506a, b . . . n whose data is encrypted with that MRU key.
Upon receiving the encrypted (MRU Key)I 530, the interface device 502 decrypts (at block 630) the encrypted (MRU Key)I 528 with the interface private key JI 514 and then uses (at block 632) the MRU key 510 to encode/decode the data to perform the I/O request to the target storage cartridge 506a, b . . . n.
With the implementation of
The implementation of
Further, the interface public/private key for a given drive may be established and set at manufacturing and be unchangeable, and can either be unique for each drive or the same key across a same class of drives. Additionally, the interface public/private key in the drives may be modified in the field to allow customization. In such case, the drive may be designed to require some manual operation directly on the drive device to modify the key in order to prevent a hacker from remotely changing the key over a network.
Upon receiving (at block 770) the encrypted (MRU Key)H 724 and (TH)I 726 and I/O request at block 770, the controller 718 mounts (at block 772) the target storage cartridge 506a, b . . . n in the interface device 702 if not already mounted. The controller 718 will then decrypt the encrypted host private key (TH)I 726 with the interface private key JI in the memory 722 and then use the host private key JH 730 to decrypt (at block 776) the encrypted (MRU Key)H 724 in memory to produce the MRU key 710 to use to encrypt and/or decrypt data. The controller 718 then uses (at block 778) the MRU key 710 to encode or decode data to be written or read with respect to the target storage cartridge 705a, b . . . n.
In further implementations of
The data interface device 802 includes a controller 820 that manages I/O requests directed to one data storage cartridge 506a, b . . . n and a memory 822 for buffering data during processing operations. In the implementation of
Upon receiving (at block 860 in
In the implementation of
In
In the implementation of
The implementations of
The described implementations further improve access time to the data in addition to providing data security because the MRU key can both decompress and decrypt data in the same operation when decoding the data from the storage cartridge. In this way, the described decoding methodology avoids the need to perform separate passes of decompression and then decryption of the data in order to provide both compression and encryption of data in the storage cartridge.
The described implementations of an encoder and decoder include a method, apparatus or article of manufacture using standard programming and/or engineering techniques to produce software, firmware, hardware, or any combination thereof. The term “article of manufacture” as used herein refers to code or logic implemented in hardware logic (e.g., an integrated circuit chip, Field Programmable Gate Array (FPGA), Application Specific Integrated Circuit (ASIC), etc.) or a computer readable medium (e.g., magnetic storage medium (e.g., hard disk drives, floppy disks, tape, etc.), optical storage (CD-ROMs, optical disks, etc.), volatile and non-volatile memory devices (e.g., EEPROMs, ROMs, PROMs, RAMs, DRAMs, SRAMs, firmware, programmable logic, etc.). Code in the computer readable medium is accessed and executed by a processor. The code in which preferred embodiments are implemented may further be accessible through a transmission media or from a file server over a network. In such cases, the article of manufacture in which the code is implemented may comprise a transmission media, such as a network transmission line, wireless transmission media, signals propagating through space, radio waves, infrared signals, etc. Of course, those skilled in the art will recognize that many modifications may be made to this configuration without departing from the scope of the present invention, and that the article of manufacture may comprise any information bearing medium known in the art.
The described security protocols of
In the described implementations, strings were replaced with copy pointers, or references to matching string values, and the remaining input data comprised literal bytes replaced with references to the MRU list. The literal may comprise more or less bits than a byte.
In the described implementations, the LZ1 algorithm was used to encode strings matching strings in the history buffer and an updateable MRU list was used to encode the literals. In alternative implementations, different compression algorithms may be used. For instance, LZ2 may be used to encode values matching a dictionary of entries. In LZ2 implementations, strings in the input data would be replaced with references to the dictionary instead of a copy pointer to a previous instance of the string in the history buffer. Still further, alternative compression algorithms may be used to code certain of the strings and the MRU list to encode other of the strings left as literals.
In the logic of
In further implementations, additional encrypting operations may be performed using the described or additional random number generators. For instance, the encoder or software may encrypt access points and valid data lengths. Such encryption may involve scrambling data in response to generated pseudo-random numbers as well as XOR'ing the scrambled data with a further pseudo random number. Further, the scrambling and XOR combination may be repeated a number of times against the same item. Still further, an additional random number generator may be used to fill out padding bits and other bits which would otherwise go to some default. For instance, the displacement field of Copy Pointers output in the first 512 bytes from the beginning of a Compressed Data Stream or from an access point has one or more bits which must be ‘0’ because the 10 bit Displacement field is addressing a valid history buffer which could logically be addressed by fewer bits—and thus the high order bit(s) are zero.
In the described implementations, the list used to encode the literals comprised an MRU list 20 (in
In the described implementations, the input data was encoded on a byte-by-byte basis. In additional implementations, strings having different bit lengths than a byte may be subject to the encoding operations.
In the described implementations, the MRU list 20 (in
The described implementations prepended specific bit values to the copy pointer and MRU reference to distinguish between the reference code an MRU reference. In alternative implementations, different bit values may be used to identify the reference codes.
The preferred logic of
Specific encryption and key transmission protocols and levels of encryption were described. However additional levels of encryption may be used for transmissions between the host 500 and data interface device 502. Further, encryption schemes other than the private/public key method may be used.
In described implementations, the host 500 transmitted the MRU key in encrypted form to the data interface device 502. In alternative implementations, the host 500 may transmit a seed number instead of the MRU key that the data interface device 502 would use to generate the MRU key.
In the described implementations, the interface device 502 used the MRU key to perform the encoding and decoding of data. In alternative implementations, the host may encode the data and transmit the encoded data to the drive interface 502 to write to the storage cartridge 506a, b . . . n and access the encoded data form the storage cartridge 506a, b . . . n via the interface device and use the MRU key to decode the encoded data. In such implementations, the host 500 may maintain the MRU key encrypted using its own host public (KH) and private key (JH) pair. Only when the MRU key is needed to access the data would the host 500 then decrypt the encrypted MRU key, i.e., (MRU Key)H and use the key to encode or decode data at the storage cartridge 506a, b . . . n.
The foregoing description of the preferred embodiments of the invention has been presented for the purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise form disclosed. Many modifications and variations are possible in light of the above teaching. It is intended that the scope of the invention be limited not by this detailed description, but rather by the claims appended hereto. The above specification, examples and data provide a complete description of the manufacture and use of the composition of the invention. Since many embodiments of the invention can be made without departing from the spirit and scope of the invention, the invention resides in the claims hereinafter appended.
This application is a continuation of U.S. patent application Ser. No. 09/977,159, filed on Oct. 11, 2001, which patent application is incorporated herein by reference in its entirety.
Number | Name | Date | Kind |
---|---|---|---|
4688169 | Joshi | Aug 1987 | A |
4736422 | Mason | Apr 1988 | A |
4796220 | Wolfe | Jan 1989 | A |
4799061 | Abraham et al. | Jan 1989 | A |
4866769 | Karp | Sep 1989 | A |
5023907 | Johnson et al. | Jun 1991 | A |
5121483 | Monahan et al. | Jun 1992 | A |
5285497 | Thatcher, Jr. | Feb 1994 | A |
5319710 | Atalla et al. | Jun 1994 | A |
5321749 | Virga | Jun 1994 | A |
5325430 | Smythe et al. | Jun 1994 | A |
5337357 | Chou et al. | Aug 1994 | A |
5398283 | Virga | Mar 1995 | A |
5416840 | Cane et al. | May 1995 | A |
5416841 | Merrick | May 1995 | A |
5448698 | Wilkes et al. | Sep 1995 | A |
5450489 | Ostrover et al. | Sep 1995 | A |
5479512 | Weiss | Dec 1995 | A |
5642421 | Gray et al. | Jun 1997 | A |
5719938 | Haas et al. | Feb 1998 | A |
5737422 | Billings | Apr 1998 | A |
5745568 | O'Connor et al. | Apr 1998 | A |
5748744 | Levy et al. | May 1998 | A |
5805700 | Nardone et al. | Sep 1998 | A |
5809143 | Hughes | Sep 1998 | A |
5809145 | Slik et al. | Sep 1998 | A |
RE36181 | Koopman, Jr. et al. | Apr 1999 | E |
5915021 | Herlin et al. | Jun 1999 | A |
5926624 | Katz et al. | Jul 1999 | A |
5949877 | Traw et al. | Sep 1999 | A |
5956407 | Slavin | Sep 1999 | A |
5963642 | Goldstein | Oct 1999 | A |
5974144 | Brandman | Oct 1999 | A |
5991399 | Graunke et al. | Nov 1999 | A |
5991403 | Aucsmith et al. | Nov 1999 | A |
6023506 | Ote et al. | Feb 2000 | A |
6098056 | Rusnak et al. | Aug 2000 | A |
6104561 | Braithwaite et al. | Aug 2000 | A |
6218970 | Jaquette | Apr 2001 | B1 |
6468160 | Eliott | Oct 2002 | B2 |
6606707 | Hirota et al. | Aug 2003 | B1 |
6702672 | Angell et al. | Mar 2004 | B1 |
6779115 | Naim | Aug 2004 | B1 |
6898296 | Itoh | May 2005 | B2 |
6915434 | Kuroda et al. | Jul 2005 | B1 |
7003111 | Jaquette | Feb 2006 | B2 |
20010042043 | Shear et al. | Nov 2001 | A1 |
20020157011 | Thomas, III | Oct 2002 | A1 |
20030070083 | Nessler | Apr 2003 | A1 |
20040162137 | Elliott | Aug 2004 | A1 |
20040181488 | Oshima et al. | Sep 2004 | A1 |
20040252604 | Johnson et al. | Dec 2004 | A1 |
Number | Date | Country |
---|---|---|
924895 | Jun 1999 | EP |
9848389 | Oct 1998 | WO |
Entry |
---|
Microsoft Corp., “Encrypting File System for Windows 2000”, Copyright 1998 Microsoft Corporation. |
IBM, Corp., “Fast Hardware Data Compression Algorithm and Some Algorithmic Extensions”, Journal of Research and Development, vol. 42, No. 6, 1998 ,pp. 1-13. |
H.A. Lewis, et al., “Lempel-Ziv Encoding”, in: Data Structures & Their Algorithms, Harper Collins Publishers 1991. |
“Adaptive Lossless Data Compression (ALDC)”, Quarter-Inch Cartridge Drive Standards Inc., QIC-154, Revision A, Mar. 10, 1994. |
Streaming Lossless Data Compression Algorithm—(SLDC), ECMA Standardizing Information and Communication System, Second Draft, Dec. 2000. |
Zu-Hua “Public-Key Cryptosystem Over Ring Z”, Electronics Letters, vol. 24, Issue 2, Jan. 2, 1988. |
X. Yang, et al., “Key Distribution System for Digital Video Signal”, Signal Processing, 1996, 3rd International Conference on . . . , vol. 2, Oct. 14-18, 1996. |
A. Torrubia, et a., “Perceptual Cryptography on MPEG-1 Layer III Bit-Streams”, Consumers Electronics, 2002, ICCE, 2002 Digest of Technical Papers, International Confernce on . . . , Jun. 18-20, 2002. |
Office Action dated Nov. 16, 2004 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Response dated Feb. 16, 2005 to Office Action dated Nov. 16, 2004 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Final Office Action dated Jun. 6, 2005 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Response dated Jul. 29, 2005 to Final Office Action dated Jun. 6, 2005 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
RCE and Amendment dated Aug. 6, 2005 to Final Office Action dated May 12, 2006 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Office Action dated Nov. 8, 2005 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Response dated Feb. 8, 2006 to Office Acction dated Nov. 8, 2005 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Final Office Action dated May 12, 2006 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Response dated Jul. 15, 2006 to Final Office Action dated May 12, 2006 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Notice of Appeal and Pre-Brief Appeal Conference Request, dated Sep. 13, 2006. |
Appeal Brief dated Jan. 10, 2007. |
Office Action dated Apr. 6, 2007 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Response dated Jun. 23, 2007 to Office Action dated Apr. 6, 2007 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Office Action dated Sep. 20, 2007 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Response dated Dec. 20, 2007 to Office Action dated Sep. 20, 2007 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Final Office Action dated Mar. 24, 2008 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Response dated Jun. 24, 2008 to Office Action dated Mar. 24, 2008 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Notice of Appeal and Pre-Brief Conference Request, dated Jul. 24, 2008. |
RCE and Amendment dated Sep. 3, 2008. |
Office Action dated Nov. 18, 2008 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Response dated Mar. 18, 2009 to Office Action dated Nov. 18, 2008 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Notice of Appeal and Pre-Brief Conference Request, dated Sep. 25, 2009. |
Appeal Brief dated Nov. 11, 2009. |
NOA dated May 5, 2010 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
RCE, Amendment and IDS dated Aug. 4, 2010 in response to NOA dated May 5, 2010 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
NOA dated Aug. 18, 2010 for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001. |
Fourth Final Office Action dated Jun. 24, 2009, pp. 1-15, for U.S. Appl. No. 09/977,159, filed Oct. 11, 2001 by inventor G.A. Jaquette. |
Notice of Allowance, dated Jun. 16, 2005, pp. 1-6, for U.S. Appl. No. 09/977,161, filed Oct. 11, 2001 by inventor G.A. Jaquette. |
Number | Date | Country | |
---|---|---|---|
20110040986 A1 | Feb 2011 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 09977159 | Oct 2001 | US |
Child | 12912740 | US |