Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Security

Tor Project Protects Anonymous Sources


Onion Routing Defined

What is onion routing? Onion routing is a communications technique that prevents traffic analysis of transmissions. Using traffic analysis, a party can determine who is communicating with whom, even if they can't read the message. Onion routing prevents this by hiding each step of the communication within a "layer." When communicating using onion routing, a message, for instance, is wrapped within layers of encrypted data. This encrypted data contains the standard routing information for TCP/IP messages. Once encrypted, the message is sent to the first server (or "onion layer"). This server decrypts the routing information. However, it can decrypt only the information intended for it. All other routing information remains encrypted. Once this server can determine where the message should be sent next, it is transmitted. Upon receiving the message, the second server decrypts the message. Again, it can decrypt only the information intended for it. Once it knows the next destination, it transmits the message. The third server will do the same. This continues until the message reaches its target. Any response is then encrypted in the same way, though it may use a different path through the network, and then transmitted. In this way, a message is wrapped within layers of encryption, like an onion, to be unwrapped along the way until the final destination is reached. Since there is no way to know a message's ultimate destination or source, traffic analysis cannot be used to determine who is having the conversation.

Strictly speaking, the Tor project doesn't use onion routing as originally conceived. It uses a modification called "telescoping path-building." This technique addresses a weakness of the onion routing specification: namely, a single node could force other nodes to decrypt traffic. In the telescoping technique, the message initiator negotiates session keys with each hop in the message path, thereby preventing any node from knowing the session keys or encryption information of any other node. However, it is common to refer to Tor as using onion routing. --Pete Payne

Pete Payne is a software programming consultant with Kforce, a nationwide consulting firm, and is currently working at Wisconsin Public Service. Write to him at [email protected].


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.