To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

In cryptography, MDC-2 (Modification Detection Code 2, sometimes called Meyer–Schilling,[citation needed] standardized in ISO 10118-2) is a cryptographic hash function. MDC-2 is a hash function based on a block cipher with a proof of security in the ideal-cipher model.[1] The length of the output hash depends on the underlying block cipher used.

YouTube Encyclopedic

  • 1/5
    Views:
    46 468
    1 139 612
    14 341
    488 274
    582 334
  • MDC - Máximo Divisor Comum. Aula #012
  • DICA 27 - MMC e MDC Simples e Fácil (mínimo múltiplo comum e máximo divisor comum)
  • Vídeo Aula - MDC 2 - Máximo Divisor Comum - Aulas para concursos online grátis
  • ⏱ MDC (Máximo Divisor Comum) MAIS FÁCIL E RÁPIDO 👉 Minuto Matemática
  • MDC - VIVENDO A MATEMÁTICA COM A PROFESSORA ANGELA

Transcription

Algorithm

For a given message to hash and a given block cipher encryption function , the MDC-2 algorithm proceeds as follows. Let be the block length, two different constants of size . If where each has size , then the hash of the message is given by:

  • for to :
  • return

MDC-2DES hashes

When MDC-2 uses the DES block cipher, the 128-bit (16-byte) MDC-2 hashes are typically represented as 32-digit hexadecimal numbers. is chosen as the 8-byte string 5252525252525252 and is chosen as the 8-byte string 2525252525252525 (written as hexdigits). Additionally, before each iteration the first byte A[0] of recalculated as (A[0] & 0x9f) ^ 0x40 and the first byte B[0] of is recalculated as (B[0] & 0x9f) ^ 0x20.

The following demonstrates a 43-byte ASCII input (which is padded with five zero-bytes so its length is a multiple of the DES block size of 8 bytes) and the corresponding MDC-2 hash:

 MDC2("The quick brown fox jumps over the lazy dog") 
  = 000ed54e093d61679aefbeae05bfe33a

Even a small change in the message will (with probability) result in a completely different hash, e.g. changing d to c:

 MDC2("The quick brown fox jumps over the lazy cog") 
  = 775f59f8e51aec29c57ac6ab850d58e8

The hash of the zero-length string is:

 MDC2("") 
  = 52525252525252522525252525252525

Patent issues

MDC-2 was covered by U.S. patent 4,908,861, issued on March 13, 1990 but filed by IBM on August 28, 1987. Because of patent concerns support for MDC-2 has been disabled in OpenSSL on most Linux distributions and is not implemented by many other cryptographic libraries. It is implemented in GPG's libgcrypt.

The patent was due to expire on August 28, 2007, twenty years after the filing date. It actually expired in 2002[2] because IBM did not pay the renewal fee. The Canadian patent was not renewed and no European patent was granted so MDC-2 can now be freely used.

See also

Notes

  1. ^ Steinberger, John (June 23, 2007). "The Collision Intractability of MDC-2 in the Ideal-Cipher Model". Advances in Cryptology – EUROCRYPT 2007. Springer-Verlag. pp. 34–51. doi:10.1007/978-3-540-72540-4_3. Retrieved January 31, 2008.
  2. ^ "USPTO - Patent Maintenance Fees". United States Patent Office. March 13, 2002. Retrieved 2008-01-31. {{cite journal}}: Cite journal requires |journal= (help)[permanent dead link] (Click on "Bibliographic data".)
This page was last edited on 5 July 2023, at 04:17
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.