| 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 | * Lowest Level MPI Algorithms Header File * |
| 30 | * (C) 1999-2007 The Botan Project * |
| 31 | *************************************************/ |
| 32 | |
| 33 | #ifndef BOTAN_MP_ASM_H__ |
| 34 | #define BOTAN_MP_ASM_H__ |
| 35 | |
| 36 | } // WRAPNS_LINE |
| 37 | #include <botan/mp_types.h> |
| 38 | namespace QCA { // WRAPNS_LINE |
| 39 | |
| 40 | #if (BOTAN_MP_WORD_BITS == 8) |
| 41 | typedef Botan::u16bit dword; |
| 42 | #elif (BOTAN_MP_WORD_BITS == 16) |
| 43 | typedef Botan::u32bit dword; |
| 44 | #elif (BOTAN_MP_WORD_BITS == 32) |
| 45 | typedef Botan::u64bit dword; |
| 46 | #elif (BOTAN_MP_WORD_BITS == 64) |
| 47 | #error BOTAN_MP_WORD_BITS can be 64 only with assembly support |
| 48 | #else |
| 49 | #error BOTAN_MP_WORD_BITS must be 8, 16, 32, or 64 |
| 50 | #endif |
| 51 | |
| 52 | namespace Botan { |
| 53 | |
| 54 | extern "C" { |
| 55 | |
| 56 | /************************************************* |
| 57 | * Word Multiply/Add * |
| 58 | *************************************************/ |
| 59 | inline word word_madd2(word a, word b, word c, word *carry) |
| 60 | { |
| 61 | dword z = (dword)a * b + c; |
| 62 | *carry = (word)(z >> BOTAN_MP_WORD_BITS); |
| 63 | return (word)z; |
| 64 | } |
| 65 | |
| 66 | /************************************************* |
| 67 | * Word Multiply/Add * |
| 68 | *************************************************/ |
| 69 | inline word word_madd3(word a, word b, word c, word d, word *carry) |
| 70 | { |
| 71 | dword z = (dword)a * b + c + d; |
| 72 | *carry = (word)(z >> BOTAN_MP_WORD_BITS); |
| 73 | return (word)z; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | } |
| 78 | |
| 79 | #endif |
| 80 | } // WRAPNS_LINE |
| 81 | |