Skip to content
Snippets Groups Projects
Select Git revision
  • c1e08a06812bd9163119ea087b68950c285c47b5
  • master default
  • dbck-q-n-d-link
  • foutput-text_stat-override
  • generations
  • text-stat-sha256
  • use-nettle
  • import-nettle
  • refactor-cached_get_text
  • refactor-cached_get_text-part-2
  • add-text_store
  • introduce-generation_position
  • remove-reclamation
  • dbfile-temp-filenames
  • sstrdup
  • dbfile_open_read-check-magic
  • adns_dist
  • liboop_dist
  • search
  • isc
  • dbdbckmultiplechoice
  • last.cvs.revision
  • 2.1.2
  • 2.1.1
  • 2.1.0
  • adns_1_0
  • liboop_0_9
  • 2.0.7
  • search_bp
  • 2.0.6
  • 2.0.5
  • isc_1_01
  • Protocol-A-10.4
  • 2.0.4
  • 2.0.3
  • 2.0.2
  • 2.0.1
  • 2.0.0
  • isc_1_00
  • isc_merge_1999_05_01
  • isc_merge_1999_04_21
41 results

ram-parse.h

Blame
  • md5-test.c 3.23 KiB
    #include "testutils.h"
    #include "md5.h"
    
    int
    test_main(void)
    {
      test_hash(&nettle_md5, 0, "",
    	    H("D41D8CD98F00B204 E9800998ECF8427E"));
    
      test_hash(&nettle_md5, 1, "a",
    	    H("0CC175B9C0F1B6A8 31C399E269772661"));
    	    
      test_hash(&nettle_md5, 3, "abc",
    	    H("900150983cd24fb0 D6963F7D28E17F72"));
    
      test_hash(&nettle_md5, 14, "message digest",
    	    H("F96B697D7CB7938D 525A2F31AAF161D0"));
      
      test_hash(&nettle_md5, 26, "abcdefghijklmnopqrstuvwxyz",
    	    H("C3FCD3D76192E400 7DFB496CCA67E13B"));
      
      test_hash(&nettle_md5, 62,
    	    "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    	    "abcdefghijklmnopqrstuvwxyz"
    	    "0123456789",
    	    H("D174AB98D277D9F5 A5611C2C9F419D9F"));
    
      test_hash(&nettle_md5, 80,
    	    "1234567890123456789012345678901234567890"
    	    "1234567890123456789012345678901234567890",
    	    H("57EDF4A22BE3C955 AC49DA2E2107B67A"));
    
      /* Collisions, reported by Xiaoyun Wang1, Dengguo Feng2, Xuejia
         Lai3, Hongbo Yu1, http://eprint.iacr.org/2004/199. */
    
    #define M0 \
      /*                                          vv */				\
      "d131dd02 c5e6eec4 693d9a06 98aff95c 2fcab5 87 12467eab 4004583e b8fb7f89"	\
      "55ad3406 09f4b302 83e48883 25 71 415a 085125e8 f7cdc99f d91dbd f2 80373c5b"	\
      /*                             ^^                               ^^ */
    
    #define M1 \
      /*                                          vv */				\
      "d131dd02 c5e6eec4 693d9a06 98aff95c 2fcab5 07 12467eab 4004583e b8fb7f89"	\
      "55ad3406 09f4b302 83e48883 25 f1 415a 085125e8 f7cdc99f d91dbd 72 80373c5b"	\
      /*                             ^^                               ^^ */
    
    #define N0									\
      /*                                          vv */				\
      "960b1dd1 dc417b9c e4d897f4 5a6555d5 35739a c7 f0ebfd0c 3029f166 d109b18f"	\
      "75277f79 30d55ceb 22e8adba 79 cc 155c ed74cbdd 5fc5d36d b19b0a d8 35cca7e3"	\
      /*                             ^^                               ^^ */
    
    #define N1									\
      /*                                          vv */				\
      "960b1dd1 dc417b9c e4d897f4 5a6555d5 35739a 47 f0ebfd0c 3029f166 d109b18f"	\
      "75277f79 30d55ceb 22e8adba 79 4c 155c ed74cbdd 5fc5d36d b19b0a 58 35cca7e3"	\
      /*                             ^^                               ^^ */
    
      /* Note: The checksum in the paper, 1f160396 efc71ff4 bcff659f
         bf9d0fa3, is incorrect. */
    
    #define H0 "a4c0d35c 95a63a80 5915367d cfe6b751"
    
    #define N2									\
      /*                                          vv */				\
      "d8823e31 56348f5b ae6dacd4 36c919c6 dd53e2 b4 87da03fd 02396306 d248cda0"	\
      "e99f3342 0f577ee8 ce54b670 80 a8 0d1e c69821bc b6a88393 96f965 2b 6ff72a70"	\
      /*                             ^^                               ^^ */
    
    #define N3									\
      /*                                          vv */				\
      "d8823e31 56348f5b ae6dacd4 36c919c6 dd53e2 34 87da03fd 02396306 d248cda0"	\
      "e99f3342 0f577ee8 ce54b670 80 28 0d1e c69821bc b6a88393 96f965 ab 6ff72a70"	\
      /*                             ^^                               ^^ */
    
      /* Note: Also different from the checksum in the paper */
      
    #define H1 "79054025 255fb1a2 6e4bc422 aef54eb4"
      
      test_hash(&nettle_md5,
    	    HL(M0 N0), H(H0));
    
      test_hash(&nettle_md5,
    	    HL(M1 N1), H(H0));
    
      test_hash(&nettle_md5,
    	    HL(M0 N2), H(H1));
    
      test_hash(&nettle_md5,
    	    HL(M1 N3), H(H1));
    
      SUCCESS();
    }