Jump to content

scrypt

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Ricmoo (talk | contribs) at 03:57, 18 April 2014 (→‎Implementations, wrappers, and distributions). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.


In cryptography, scrypt is a password-based key derivation function created by Colin Percival, originally for the Tarsnap online backup service.[1] The algorithm was specifically designed to make it costly to perform large-scale custom hardware attacks by requiring large amounts of memory. In 2012, the scrypt algorithm was published by IETF as an Internet Draft, intended to become an informational RFC, which has since expired.[2] A simplified version of scrypt is used as a proof-of-work scheme by a number of cryptocurrencies, such as Litecoin[3] and Dogecoin.

Introduction

A password-based key derivation function (password-based KDF) is generally designed to be computationally intensive, so that it takes a relatively long time to compute (say on the order of several hundred milliseconds). Legitimate users only need to perform the function once per operation (e.g., authentication), and so the time required is negligible. However, a brute force attack would likely need to perform the operation billions of times, at which point the time requirements become significant and, ideally, prohibitive.

Previous password-based KDFs (such as the popular PBKDF2 from RSA Laboratories) have relatively low resource demands, meaning they do not require elaborate hardware or very much memory to perform. They are therefore easily and cheaply implemented in hardware (for instance on an ASIC or even an FPGA). This allows an attacker with sufficient resources to launch a large-scale parallel attack by building hundreds or even thousands of implementations of the algorithm in hardware and having each search a different subset of the key space. This divides the amount of time needed to complete a brute-force attack by the number of implementations available, very possibly bringing it down to a reasonable time frame.

The scrypt function is designed to hinder such attempts by raising the resource demands of the algorithm. Specifically, the algorithm is designed to use a large amount of memory compared to other password-based KDFs,[citation needed] making the size and the cost of a hardware implementation much more expensive, and therefore limiting the amount of parallelism an attacker can use (for a given amount of financial resources).

Overview

The large memory requirements of scrypt come from a large vector of pseudorandom bit strings that are generated as part of the algorithm. Once the vector is generated, the elements of it are accessed in a pseudo-random order and combined to produce the derived key. A straightforward implementation would need to keep the entire vector in random-access memory so that it can be accessed as needed.

Because the elements of the vector are generated algorithmically, each element could be generated on the fly as needed, only storing one element in memory at a time and therefore cutting the memory requirements significantly. However, the generation of each element is intended to be computationally expensive, and the elements are expected to be accessed many times throughout the execution of the function. Thus there is a significant trade-off in speed in order to get rid of the large memory requirements.

This sort of time–memory trade-off often exists in computer algorithms: you can increase speed at the cost of using more memory, or decrease memory requirements at the cost of performing more operations and taking longer. The idea behind scrypt is to deliberately make this trade-off costly in either direction. Thus an attacker could use an implementation that doesn't require many resources (and can therefore be massively parallelized with limited expense) but runs very slowly, or use an implementation that runs more quickly but has very large memory requirements and is therefore more expensive to parallelize.

Proof-of-work in cryptocurrency operations

Scrypt has been used in many cryptocurrencies since Litecoin first implemented it as an alternate proof-of-work algorithm in October of 2011. Mining of cryptocurrencies that use scrypt as a proof-of-work function is often performed on graphics processing units (GPUs) since GPUs tend to have significantly more processing power compared to the CPU.[4] This has led to shortages of high end GPUs due to the rising price of these currencies in the months of November and December 2013.[5]

Implementations, wrappers, and distributions

See also

References

  1. ^ "scrypt page on the Tarsnap website". Retrieved 21 January 2014.
  2. ^ C. Percival, S. Josefsson (2012-09-17). "The scrypt Password-Based Key Derivation Function". IETF. {{cite journal}}: Cite journal requires |journal= (help)
  3. ^ Alec Liu. "Beyond Bitcoin: A Guide to the Most Promising Cryptocurrencies".
  4. ^ Roman Guelfi-Gibbs. Litecoin Scrypt Mining Configurations for Radeon 7950. Amazon Digital Services.
  5. ^ Joel Hruska (10 December 2013). "Massive surge in Litecoin mining leads to graphics card shortage". ExtremeTech.

External links