~ubuntu-branches/ubuntu/wily/qca2/wily-proposed

« back to all changes in this revision

Viewing changes to qca/src/botantools/botan/bit_ops.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2007-10-27 18:51:54 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071027185154-4ir9ys3h2q9fofrw
Tags: 2.0.0-2
Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
Copyright (C) 1999-2007 The Botan Project. All rights reserved.
3
 
 
4
 
Redistribution and use in source and binary forms, for any use, with or without
5
 
modification, is permitted provided that the following conditions are met:
6
 
 
7
 
1. Redistributions of source code must retain the above copyright notice, this
8
 
list of conditions, and the following disclaimer.
9
 
 
10
 
2. Redistributions in binary form must reproduce the above copyright notice,
11
 
this list of conditions, and the following disclaimer in the documentation
12
 
and/or other materials provided with the distribution.
13
 
 
14
 
THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) "AS IS" AND ANY EXPRESS OR IMPLIED
15
 
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16
 
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
17
 
 
18
 
IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE FOR ANY DIRECT,
19
 
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20
 
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21
 
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
22
 
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
23
 
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
24
 
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
 
*/
26
 
// LICENSEHEADER_END
27
 
namespace QCA { // WRAPNS_LINE
28
 
/*************************************************
29
 
* Bit/Word Operations Source File                *
30
 
* (C) 1999-2007 The Botan Project                *
31
 
*************************************************/
32
 
 
33
 
} // WRAPNS_LINE
34
 
#include <botan/bit_ops.h>
35
 
namespace QCA { // WRAPNS_LINE
36
 
 
37
 
namespace Botan {
38
 
 
39
 
/*************************************************
40
 
* XOR arrays together                            *
41
 
*************************************************/
42
 
void xor_buf(byte data[], const byte mask[], u32bit length)
43
 
   {
44
 
   while(length >= 8)
45
 
      {
46
 
      data[0] ^= mask[0]; data[1] ^= mask[1];
47
 
      data[2] ^= mask[2]; data[3] ^= mask[3];
48
 
      data[4] ^= mask[4]; data[5] ^= mask[5];
49
 
      data[6] ^= mask[6]; data[7] ^= mask[7];
50
 
      data += 8; mask += 8; length -= 8;
51
 
      }
52
 
   for(u32bit j = 0; j != length; ++j)
53
 
      data[j] ^= mask[j];
54
 
   }
55
 
 
56
 
void xor_buf(byte out[], const byte in[], const byte mask[], u32bit length)
57
 
   {
58
 
   while(length >= 8)
59
 
      {
60
 
      out[0] = in[0] ^ mask[0]; out[1] = in[1] ^ mask[1];
61
 
      out[2] = in[2] ^ mask[2]; out[3] = in[3] ^ mask[3];
62
 
      out[4] = in[4] ^ mask[4]; out[5] = in[5] ^ mask[5];
63
 
      out[6] = in[6] ^ mask[6]; out[7] = in[7] ^ mask[7];
64
 
      in += 8; out += 8; mask += 8; length -= 8;
65
 
      }
66
 
   for(u32bit j = 0; j != length; ++j)
67
 
      out[j] = in[j] ^ mask[j];
68
 
   }
69
 
 
70
 
/*************************************************
71
 
* Return true iff arg is 2**n for some n > 0     *
72
 
*************************************************/
73
 
bool power_of_2(u64bit arg)
74
 
   {
75
 
   if(arg == 0 || arg == 1)
76
 
      return false;
77
 
   if((arg & (arg-1)) == 0)
78
 
      return true;
79
 
   return false;
80
 
   }
81
 
 
82
 
/*************************************************
83
 
* Return the index of the highest set bit        *
84
 
*************************************************/
85
 
u32bit high_bit(u64bit n)
86
 
   {
87
 
   for(u32bit count = 64; count > 0; --count)
88
 
      if((n >> (count - 1)) & 0x01)
89
 
         return count;
90
 
   return 0;
91
 
   }
92
 
 
93
 
/*************************************************
94
 
* Return the index of the lowest set bit         *
95
 
*************************************************/
96
 
u32bit low_bit(u64bit n)
97
 
   {
98
 
   for(u32bit count = 0; count != 64; ++count)
99
 
      if((n >> count) & 0x01)
100
 
         return (count + 1);
101
 
   return 0;
102
 
   }
103
 
 
104
 
/*************************************************
105
 
* Return the number of significant bytes in n    *
106
 
*************************************************/
107
 
u32bit significant_bytes(u64bit n)
108
 
   {
109
 
   for(u32bit j = 0; j != 8; ++j)
110
 
      if(get_byte(j, n))
111
 
         return 8-j;
112
 
   return 0;
113
 
   }
114
 
 
115
 
/*************************************************
116
 
* Return the Hamming weight of n                 *
117
 
*************************************************/
118
 
u32bit hamming_weight(u64bit n)
119
 
   {
120
 
   u32bit weight = 0;
121
 
   for(u32bit j = 0; j != 64; ++j)
122
 
      if((n >> j) & 0x01)
123
 
         ++weight;
124
 
   return weight;
125
 
   }
126
 
 
127
 
}
128
 
} // WRAPNS_LINE