Very Smooth Hash
   HOME

TheInfoList



OR:

In
cryptography Cryptography, or cryptology (from "hidden, secret"; and ''graphein'', "to write", or ''-logy, -logia'', "study", respectively), is the practice and study of techniques for secure communication in the presence of Adversary (cryptography), ...
, Very Smooth Hash (VSH) is a secure
cryptographic hash function A cryptographic hash function (CHF) is a hash algorithm (a map (mathematics), map of an arbitrary binary string to a binary string with a fixed size of n bits) that has special properties desirable for a cryptography, cryptographic application: ...
invented in 2005 by Scott Contini, Arjen Lenstra, and Ron Steinfeld.
Provably secure Provable security refers to any type or level of computer security that can be proved. It is used in different ways by different fields. Usually, this refers to mathematical proofs, which are common in cryptography. In such a proof, the capabilit ...
means that finding collisions is as difficult as some known hard mathematical problem. Unlike other secure collision-resistant hashes, VSH is efficient and usable in practice.
Asymptotically In analytic geometry, an asymptote () of a curve is a line such that the distance between the curve and the line approaches zero as one or both of the ''x'' or ''y'' coordinates tends to infinity. In projective geometry and related contexts, ...
, it only requires a single multiplication per message-bits and uses RSA-type arithmetic. Therefore, VSH can be useful in embedded environments where code space is limited. Two major variants of VSH were proposed. For one, finding a
collision In physics, a collision is any event in which two or more bodies exert forces on each other in a relatively short time. Although the most common use of the word ''collision'' refers to incidents in which two or more objects collide with great for ...
is as difficult as finding a nontrivial modular square root of a very
smooth number In number theory, an ''n''-smooth (or ''n''-friable) number is an integer whose prime factors are all less than or equal to ''n''. For example, a 7-smooth number is a number in which every prime factor is at most 7. Therefore, 49 = 72 and 15750 = 2 ...
modulo . The other one uses a prime modulus (with no
trapdoor A trapdoor or hatch is a sliding or hinged door that is flush with the surface of a floor, ceiling, or roof. It is traditionally small in size. It was invented to facilitate the hoisting of grain up through mills, however, its list of uses has ...
), and its security proof relies on the hardness of finding discrete logarithms of very smooth numbers modulo . Both versions have similar efficiency. VSH is not suitable as a substitute for a
random oracle In cryptography, a random oracle is an oracle (a theoretical black box) that responds to every ''unique query'' with a (truly) random response chosen uniformly from its output domain. If a query is repeated, it responds the same way every tim ...
, but can be used to build a secure randomized trapdoor hash function. This function can replace the
trapdoor function In theoretical computer science and cryptography, a trapdoor function is a function (mathematics), function that is easy to compute in one direction, yet difficult to compute in the opposite direction (finding its Inverse function, inverse) wit ...
used in the Cramer–Shoup signature scheme, maintaining its provable security while speeding up verification time by about 50%.


VSN and VSSR

All cryptographic hash functions that are now widely used are not based on hard mathematical problems. Those few functions that are constructed on hard mathematical problems are called
provably secure Provable security refers to any type or level of computer security that can be proved. It is used in different ways by different fields. Usually, this refers to mathematical proofs, which are common in cryptography. In such a proof, the capabilit ...
. Finding collisions is then known to be as hard as solving the hard mathematical problem. For the basic version of Very Smooth Hash, this hard problem is to find modular square roots (VSSR) of certain special numbers (VSN). This is assumed to be as hard as factoring integers. For fixed constants and , an integer is a ''Very Smooth Number'' (VSN) if the largest prime factor of is at most . An integer is a ''Very Smooth Quadratic Residue modulo'' if the largest prime in 's factorization is at most and there exists an integer such that . The integer is then said to be a modular square root of . We are interested only in non-trivial square roots, those where . If , then the root can be easily computed using algorithms from fields of characteristic 0, such as the real field. Therefore, they are not suitable in cryptographic primitives. ''Very Smooth Number Nontrivial Modular Square Root'' (VSSR) is the following problem: Let be the product of two unknown primes of approximately the same size, let , and let be the sequence of primes. Given , find an integer
coprime In number theory, two integers and are coprime, relatively prime or mutually prime if the only positive integer that is a divisor of both of them is 1. Consequently, any prime number that divides does not divide , and vice versa. This is equiv ...
to such that \textstyle x^2 \equiv \prod_^k p_i^ \pmod and at least one of is odd. The ''VSSR assumption'' is that there is no probabilistic polynomial (in ) time algorithm which solves VSSR with non-negligible probability. This is considered a useless assumption in practice because it does not tell for what size of moduli VSSR is computationally hard. Instead the ''computational VSSR assumption'' is used. It says that solving VSSR is assumed to be as hard as factoring a hard-to-factor -bit modulus, where is somewhat smaller than the size of .


Examples of VSN and VSSR

Let the parameters be fixed as and . Then is a Very Smooth Number with respect to these parameters because is greater than all of 's prime factors. On the other hand, is not a VSN under these parameters. The integer is a Very Smooth Quadratic Residue modulo because it is a Very Smooth Number (under ), and . This is a trivial modular square root, because and so the modulus is not involved when squaring. The integer b_2 = 15 is also Very Smooth Quadratic Residue modulo n. All prime factors are smaller than 7.37 and the Modular Square Root is x_2 = 20 since 20^2 = 400 \equiv 15 (mod n). This is thus a non-trivial root. The VSSR problem is to find x_2 given b_2 and n. And we suppose that this is computationally as hard as factoring n. The integer is also a Very Smooth Quadratic Residue modulo . All of its prime factors are smaller than 7.37, and the modular square root is , since . This is thus a non-trivial square root. The VSSR problem is to find given and . This is believed to be computationally as hard as factoring .


VSH algorithm, basic versions

Let be a large RSA composite and let be the sequence of primes. Let , the block length, be the largest integer such that \textstyle \prod_^k p_i < n. Let be an -bit message to be hashed consisting of bits and assume that . To compute the hash of : # Set . # Let , the smallest integer greater than or equal to , be the number of blocks. # Let for (padding). # Let \textstyle \ell = \sum_^k l_i 2^ with be the binary representation of the message length and define for . # For in succession, compute x_ = x_j^2 \prod_^k p_i^\mod n # Return . The function in step 5 is called the compression function.


Properties of VSH

* The message length does not need to be known in advance. * Finding a collision in VSH is as hard as solving VSSR. Thus VSH is (strongly) collision-resistant, which also implies second preimage resistance. VSH has not been proven to be preimage-resistant. * The compression function is not collision-resistant. Nonetheless, the hash function VSH is collision-resistant based on the VSSR assumption. An altered version of VSH, called VSH*, uses a collision-resistant compression function and is about 5 times quicker when hashing short messages. * Since the output length of VSH is the length of a secure RSA modulus, VSH seems quite suitable in practice for constructing "hash-then-sign" RSA signatures for arbitrarily long messages. However, such a signature must be designed carefully to ensure its security. The naïve approach could be easily broken under a
chosen-plaintext attack A chosen-plaintext attack (CPA) is an attack model for cryptanalysis which presumes that the attacker can obtain the ciphertexts for arbitrary plaintexts.Ross Anderson, ''Security Engineering: A Guide to Building Dependable Distributed Systems'' ...
. * The cost of each iteration is less than the cost of 3 modular multiplications. The basic version of VSH altogether requires one multiplication per message bits.


Variants of VSH

Several improvements, speedups, and more efficient variants of VSH have been proposed. None of them changes the underlying concept of the function. These improvements are called: * Cubing VSH (instead of squaring) * VSH with increased number of small primes * VSH with precomputed products of primes * Fast VSH * Fast VSH with increased block length


VSDL and VSH-DL variant

The VSH-DL is a discrete logarithm variant of VSH that has no
trapdoor A trapdoor or hatch is a sliding or hinged door that is flush with the surface of a floor, ceiling, or roof. It is traditionally small in size. It was invented to facilitate the hoisting of grain up through mills, however, its list of uses has ...
; its security depends on the difficulty of finding discrete logarithms modulo a prime . ''Very Smooth Number Discrete Logarithm'' (VSDL) is a problem where, given a very smooth number, the task is to find its
discrete logarithm In mathematics, for given real numbers a and b, the logarithm \log_b(a) is a number x such that b^x=a. Analogously, in any group G, powers b^k can be defined for all integers k, and the discrete logarithm \log_b(a) is an integer k such that b^k=a ...
modulo some number . As in previous section, denotes the th prime. Let furthermore be a fixed constant and be primes with and let . VSDL is the following problem: given , find integers such that 2^ \equiv \prod_^k p_i^ \pmod p with for and at least one of is non-zero. The ''VSDL assumption'' is that there is no probabilistic polynomial (in ) time algorithm which solves VSDL with non-negligible probability. There is a strong connection between the hardness of VSDL and the hardness of computing discrete logarithms modulo , which is reminiscent of, but somewhat weaker than, the connection between VSSR and integer factorization.


Security of VSH

Strong
collision resistance In cryptography, collision resistance is a property of cryptographic hash functions: a hash function ''H'' is collision-resistant if it is hard to find two inputs that hash to the same output; that is, two inputs ''a'' and ''b'' where ''a'' ≠ ' ...
is the only property proven for VSH. This does not imply preimage-resistance or other important hash function properties, and the authors state that "VSH should not be used to model
random oracle In cryptography, a random oracle is an oracle (a theoretical black box) that responds to every ''unique query'' with a (truly) random response chosen uniformly from its output domain. If a query is repeated, it responds the same way every tim ...
s," and cannot be substituted into constructions that depend upon them ( RSA signatures, some MACs). VSH should not be considered a general-purpose hash function as usually understood in
security engineering Security engineering is the process of incorporating security controls into an information system so that the controls become an integral part of the system's operational capabilities. It is similar to other systems engineering activities in that ...
.


Multiplicative property

VSH is multiplicative: Let , , and be three bitstrings of equal length, where consists only of zero bits and the strings satisfy . Then . As a result, VSH succumbs to a classical time-memory trade-off attack that applies to multiplicative and additive hashes. This fact can be used to construct a preimage attack against VSH of bits which has complexity rather than as expected.


Attack against truncated version

VSH produces a very long hash (typically 1024 bits). There are no indications that a truncated VSH hash offers security that is commensurate with the hash length. There exists a partial collision attack on VSH truncated to least significant bits. The complexity of this attack against VSH is: * Pre-computing the table offline: time and space. * Finding collisions: iterations. * Total cost: roughly , rather than as expected from a hash function with good
pseudorandomness A pseudorandom sequence of numbers is one that appears to be statistically random, despite having been produced by a completely deterministic and repeatable process. Pseudorandom number generators are often used in computer programming, as tradi ...
properties. This probably rules out the applicability of VSH in digital signature schemes which produce signatures shorter than the VSH hash result, such as elliptic-curve signature schemes.


See also

*
Cryptographic hash functions A cryptographic hash function (CHF) is a hash algorithm (a map of an arbitrary binary string to a binary string with a fixed size of n bits) that has special properties desirable for a cryptographic application: * the probability of a particula ...
* Provably secure cryptographic hash function


References

{{Cryptography navbox , hash Cryptographic hash functions