Home > Articles > Security > Network Security

This chapter is from the book

5.2 Workstation Encryption

In general, a good encryption mechanism will provide certain features, regardless of whether it is built into an operating system or packaged as a separate product:

  • An encryption algorithm whose strength and trustworthiness has been reviewed and endorsed by the open cryptographic community. This is discussed in Section 5.3.

  • A sufficiently long key length to make a brute force attack impractical. This is also discussed in Section 5.3.

  • Allow secret keys to be entered as passphrases containing at least as many letters as there are bits in the secret key. This is discussed in Section 5.4.

  • Must not have a "back door" or other "emergency data recovery" mechanism, unless that mechanism is simply an additional encryption key that the user or proprietor can change. This is also discussed in Section 5.4.

There are two strategies for applying encryption to data stored on computers: file encryption and disk encryption. File encryption works on a file-by-file basis at the discretion of the workstation's operator. Disk encryption automatically encrypts everything on a disk. Both techniques can provide good results in appropriate circumstances. Both can provide strong results, but only if they use strong encryption.

File Encryption

File encryption is the easiest way to provide encryption to a workstation user. Numerous applications provide file encryption either as their primary service or as an extra feature. The PKZIP program provides notoriously weak encryption that is still widely used. Pretty Good Privacy (PGP) is a very capable program for encrypting electronic mail, and many people use it to simply encrypt files. File encryption is best used to protect files that are shared across a network through file transfers or e-mail.

Figure 5.1 shows how file encryption works. The file's owner selects the file to be encrypted and chooses a secret key, usually in the form of a password or passphrase. Others cannot read the encrypted file unless they have the secret key. To decrypt the file, the owner (or anyone else who knows the secret key) invokes the decryption program and provides the secret key. Apple's Mac OS 9 integrates this capability into the desktop: when a user opens an encrypted file, the system automatically prompts for the secret key, decrypts the file, and then opens it in the appropriate application.

Figure 5.1 Protecting workstation files with encryption. The file's owner chooses a secret to use as a key, and then encrypts the file to hide its contents from others. The encryption function should write zeroes over the plaintext data after producing the encrypted file, so that attackers can't recover the encrypted data by searching for the original file. Anyone who knows the secret key can decrypt the data.

File encryption does not reliably protect data from other workstation users. Figure 5.1 also suggests a potential source of trouble: the encrypted file uses different disk space from the plaintext file. The attacker can simply retrieve a plaintext copy of the file if the application does not take special steps to erase the plaintext. Early file encryption programs simply deleted the file. This strategy worked tolerably well on timesharing systems, though it would not prevent an administrator from retrieving the plaintext. However, many workstations have "undelete" programs to retrieve accidentally deleted files, and such a program can just as easily retrieve the "deleted" plaintext file. Experts refer to this as the object reuse problem, since reusing the deleted disk space allows unauthorized people to reuse the contents of the "object" (the file).

Effective file encryption programs overwrite the plaintext file before deleting it. For most purposes, it is enough to overwrite the original data with any other data. This prevents an attacker from retrieving the deleted file, copying it to another location, and then examining its contents.

This defense does not prevent sophisticated, laboratory-based attacks. Hard drives store data magnetically, and all data leaves a slight magnetic residue. A detailed laboratory analysis of magnetic patterns on a disk surface can retrieve data from a disk even if another layer of data has been written over it.

Fortunately, there is a relatively simple defense against laboratory attacks: apply a three-step overwriting process to the data at least once. The process requires three binary data patterns: one random bit pattern (like 0011 0101), the complement of the pattern (1100 1010), and a pattern consisting of a mixture of bits from the two (like 1001 0111). Although this does not prevent all laboratory attacks, it is sufficient to make most attacks impractical.

However, even the best file encryption program should be used only to encrypt files shared over a network. File encryption can reduce, but does not eliminate, the risk of attackers recovering information if they have physical access to the workstation. The principal risk is not even a sophisticated laboratory attack or other storage problem, though these remain. The principal risk is the attacker scavenging the sensitive data from other places on the same hard drive. Few people construct a document or other sensitive file purely from scratch. The information in the file often comes from other files, which may be earlier drafts of the same document, or perhaps databases or spreadsheets that managed the raw material. Even if attackers can't retrieve the plaintext report, they can retrieve all the raw material, assuming the owner didn't laboriously encrypt each file individually.

Moreover, most document production programs like FrameMaker and word processors like Microsoft Word produce temporary and back-up files that contain some or all of the document in plaintext. There is no way the file encryption program can track down all of those files and overwrite them. But a motivated attacker can retrieve deleted temporary files and scan the contents of plaintext back-up files. Attackers can even look for deleted "spool" files that carried the plaintext report to the printer. A sophisticated attacker can search sectors of the disk that were marked as bad blocks; such sectors can't be reached by most overwriting programs. File encryption is not practical for protecting data from motivated attackers with physical access to the workstation.

Volume Encryption

As the name implies, volume encryption converts the entire contents of a hard drive into ciphertext. This prevents attackers from recovering data by scavenging the hard drive, since all data on the hard drive is encrypted. Users don't have to worry about whether they failed to encrypt a critical file because everything gets encrypted automatically, even temporary and spool files. Attackers cannot recover sensitive data by scavenging the hard drive, since everything is encrypted, including scratch space, deleted files, and temporary files. The only shortcoming is that encryption requires a lot of computation, and that either increases the cost or reduces the performance of the protected computer.

Figure 5.2 Protecting a hard drive with volume encryption Volume encryption protects everything on the hard drive by encrypting every block of data before it is written. This is easy to use since encryption happens automatically. The user never has to decide whether a particular file needs encryption. All the user needs to do is provide the correct secret key in order to use the hard drive.

As shown in Figure 5.2, the encryption generally takes place between the hard drive and the workstation's other components. Operation is almost completely transparent so that the workstation's CPU, memory, and standard, off-the-shelf software does not know that encryption takes place. The most obvious difference might be the presence of a special program that collects the secret key as a password or passphrase when the computer boots up.

Volume encryption products may be software based or hardware based. The software-based products usually install as a special device driver. Software products often reduce the computer's overall performance since encryption shares the CPU with the application programs. Hardware-based products are usually installed in the workstation either as a custom interface card or as a device connected between the hard drive and its connection to the workstation. Systems with encryption hardware generally achieve better performance by off-loading the encryption computations onto special circuitry. Some products use custom encryption circuits to provide the highest practical performance.

Volume encryption provides better security than file encryption when potential attackers may have physical access to the hard drive. As shown in Figure 5.3, this technique encrypts all data stored permanently on the computer. Potentially sensitive plaintext data resides only in RAM, except when it is typed in or displayed. Thus, plaintext data disappears when the computer is turned off, leaving only the encrypted data on the hard drive.

Figure 5.3 How volume encryption works Volume encryption is installed transparently between the hard drive and the rest of the workstation, either in the device driver or in a separate interface circuit. Sensitive data still resides in the workstation's RAM in plaintext form, but it is always encrypted before it is written to the hard drive. All data read from the hard drive is automatically decrypted before it is delivered to the software inside the workstation.

This is particularly appealing to laptop users, since laptops face a serious theft risk. Some thieves reportedly realize that the data on a laptop may be more valuable than the laptop itself. There was once a report of a $10,000 bounty for laptops stolen at Washington National Airport. Volume encryption prevents thieves from recovering any information from the laptop's hard drive.

Attackers achieve nothing from an OS substitution or I/O bus attack on an encrypted volume: they can't even get started with the encrypted hard drive. The operating system will treat the encrypted volume as an unformatted disk because it won't be able to read the volume description data. Files can't be listed because the directory is encrypted. Even the disk space belonging to deleted files or bad blocks is encrypted, so scavenging fails.

A volume encryption system must be highly reliable, since certain failures will cause the loss of all of its data. Proper key handling is crucial: there must be no misunderstanding between owner and software regarding the password or passphrase that protects the data. If the passphrase is lost, the data itself should be considered lost. There should be no way to enter a correct passphrase and have it fail to be recognized as such.

Any security mechanism that relies on secrets should provide a way to change them periodically. With volume encryption, the product should provide a mechanism that changes the secret key or passphrase. This requires that the product systematically decrypt the entire disk and then re-encrypt it with the new secret. This will be a time consuming process on a large volume, but it must be done when the volume changes ownership.

To summarize, a disk encryption product should provide the following features:

  • All of the features of good encryption systems that were listed at the beginning of this section

  • Bulletproof reliability, since all data is lost if anything goes wrong in data handling, key management, or encryption

  • Allow users to rekey a volume, essentially changing the passphrase used to decrypt it

While volume encryption provides a high degree of security, it also has some properties that sometimes become shortcomings. First, it doesn't usually provide a way to distribute encrypted files. Since the encryption takes place transparently, the workstation can't read anything from the disk except for decrypted plaintext. If users need to exchange encrypted files through e-mail, they will need a separate file encryption program. A second shortcoming is that each volume can have only a single secret, and all of that volume's users must share that secret. Thus, volume encryption can't keep things private between users sharing a single volume.

In some cases, people think it's a shortcoming that volume encryption protects everything indiscriminately. This is especially true on systems that use software to perform the encryption, since it slows down overall system performance. While people may tolerate delays when the system encrypts their secret memoranda, they're less patient to wait for the system to decrypt Microsoft Office, which attackers probably already have copies of. But the only way to ensure that all sensitive information gets encrypted is to encrypt everything.

While volume encryption provides very strong protection against some attacks, it does not protect against every attack. Cryptanalysts have an old saying about retrieving data: "First, go after the plaintext." This means that the best attack snares the data while it is still in plaintext form, instead of trying to overcome cryptographic protections. The same holds true for attacking an encrypted volume. Practical attacks would use Trojan horse software to sneak plaintext data onto unencrypted diskettes or to transmit plaintext data to other computers via a network connection. In the late 1990s, for example, there were rumors of a Microsoft Word macro virus that would post a copy of the document it infected to the Usenet news system, essentially publishing it worldwide on the Internet. Volume encryption by itself cannot protect against such an attack.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020