Blame view

3rdparty/websocketpp-0.8.2/test/utility/sha1.cpp 3.29 KB
1fa7ee12   Hu Chunming   提交 _GLIBCXX_USE_C...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
  /*
   * Copyright (c) 2011, Peter Thorson. All rights reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions are met:
   *     * Redistributions of source code must retain the above copyright
   *       notice, this list of conditions and the following disclaimer.
   *     * Redistributions in binary form must reproduce the above copyright
   *       notice, this list of conditions and the following disclaimer in the
   *       documentation and/or other materials provided with the distribution.
   *     * Neither the name of the WebSocket++ Project nor the
   *       names of its contributors may be used to endorse or promote products
   *       derived from this software without specific prior written permission.
   *
   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   * ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
   * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
   * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   *
   */
  //#define BOOST_TEST_DYN_LINK
  #define BOOST_TEST_MODULE sha1
  #include <boost/test/unit_test.hpp>
  
  #include <iostream>
  #include <string>
  
  #include <websocketpp/sha1/sha1.hpp>
  #include <websocketpp/utilities.hpp>
  
  BOOST_AUTO_TEST_SUITE ( sha1 )
  
  BOOST_AUTO_TEST_CASE( sha1_test_a ) {
      unsigned char hash[20];
      unsigned char reference[20] = {0xa9, 0x99, 0x3e, 0x36, 0x47,
                                     0x06, 0x81, 0x6a, 0xba, 0x3e,
                                     0x25, 0x71, 0x78, 0x50, 0xc2,
                                     0x6c, 0x9c, 0xd0, 0xd8, 0x9d};
  
      websocketpp::sha1::calc("abc",3,hash);
  
      BOOST_CHECK_EQUAL_COLLECTIONS(hash, hash+20, reference, reference+20);
  }
  
  BOOST_AUTO_TEST_CASE( sha1_test_b ) {
      unsigned char hash[20];
      unsigned char reference[20] = {0x84, 0x98, 0x3e, 0x44, 0x1c,
                                     0x3b, 0xd2, 0x6e, 0xba, 0xae,
                                     0x4a, 0xa1, 0xf9, 0x51, 0x29,
                                     0xe5, 0xe5, 0x46, 0x70, 0xf1};
  
      websocketpp::sha1::calc(
          "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",56,hash);
  
      BOOST_CHECK_EQUAL_COLLECTIONS(hash, hash+20, reference, reference+20);
  }
  
  BOOST_AUTO_TEST_CASE( sha1_test_c ) {
      std::string input;
      unsigned char hash[20];
      unsigned char reference[20] = {0x34, 0xaa, 0x97, 0x3c, 0xd4,
                                     0xc4, 0xda, 0xa4, 0xf6, 0x1e,
                                     0xeb, 0x2b, 0xdb, 0xad, 0x27,
                                     0x31, 0x65, 0x34, 0x01, 0x6f};
  
      for (int i = 0; i < 1000000; i++) {
          input += 'a';
      }
  
      websocketpp::sha1::calc(input.c_str(),input.size(),hash);
  
      BOOST_CHECK_EQUAL_COLLECTIONS(hash, hash+20, reference, reference+20);
  }
  
  BOOST_AUTO_TEST_SUITE_END()