The 128bit tag has no wiki summary.
10
votes
6answers
10k views
Add and Subtract 128 Bit Integers in C(++)
I'm writing a compressor for a long stream of 128 bit numbers. I would like to store the numbers as differences -- storing only the difference between the numbers rather than the numbers themselves ...
7
votes
5answers
2k views
Are 64 bit programs bigger and faster than 32 bit versions?
I suppose I am focussing on x86, but I am generally interested in the move from 32 to 64 bit.
Logically, I can see that constants and pointers, in some cases, will be larger so programs are likely to ...
6
votes
2answers
383 views
128 bit integer with c on windows?
Is there any c compiler on windows able to use 128 bit integers natively?
On example, you can use gcc on linux, with __uint128_t... any other chance on windows?
(It would be great if 128 bit worked on ...
5
votes
4answers
181 views
512 bit hash vs 4 128bit hash
Interestingly I haven't found enough information regarding any test or experiment of collision chances of single 512bit hash like whirlpool versus concatenation of 4 128bit hashes like md5, sha1 etc.
...
4
votes
2answers
223 views
x86 assembly: 128bit shifts
What is the most efficient way to do 128 bit shift on a modern Intel CPU (core i7, sandy bridge).
A similar code is in my most inner loop:
u128 a[N];
void xor() {
for (int i = 0; i < N; ++i) {
...
4
votes
6answers
2k views
Fastest way to convert binary to decimal?
I've got four unsigned 32-bit integers representing an unsigned 128-bit integer, in little endian order:
typedef struct {
unsigned int part[4];
} bigint_t;
I'd like to convert this number into ...
4
votes
5answers
1k views
What is going to happen to our primitive types when 128-bit processors come out?
When 64-bit processors came out, it wasn't too big of a deal. Sure, C++ people had to deal with the fact that their 32-bit pointer math doesn't work on 64-bit machines, but that's what you get for ...
3
votes
2answers
278 views
__uint128_t on mingw gcc
I'm trying to compile a c program under mingw gcc. This program is using an __uint128_t integer. When I try to compile it under the standard ubuntu gcc on the same 64-bit machine, it perfectly works. ...
2
votes
3answers
280 views
Is there any way to do 128 bit ints on gcc <4.4
gcc 4.4 seems to be when they added int128_t and I need to use bit shifting and I have run out of room for some bit fields.
Edit: it might be because I'm on 32 bit computer, there's no way to have ...
2
votes
2answers
407 views
128 bit arithmetic on x64 in C
When implementing bignums on x86, obviously the most efficient choice for digit size is 32 bits. However, you need arithmetic up to twice the digit size (i.e. 32+32=33, 32*32=64, 64/32=32). ...
2
votes
1answer
390 views
AES 128 DOT NET and Java Compatibility
We have been trying a prototype of a scheme where we encrypt decrypt data between two systems: One in .NET and the other in Java. We were going to use simple 128 bit AES Encryption.
The problem I am ...
2
votes
4answers
1k views
How can I test a browser to see if it supports 128-bit encryption?
I have been given the task of finding a replacement for a piece of old code. I'm assuming it tested to see if the browser supports 128-bit encryption. Here's the old code: (I purposely split the link ...
1
vote
2answers
112 views
Fixed size integers with gmp…?
I've been trying for days to install GMP library under MINGW. I have been using for weeks __uint128_t with gcc under a linux64 bit environment, then ported the same program under GMP and mingw (32 bit ...
0
votes
1answer
86 views
c++ GMP pow() function
I am trying to do pow(2,500) in C++. But I think long long is not enough.
Someone told me I can use gmp.h. But I couldn't find out how can I do a pow(2,500) in gmp.
Can you please help? thanks.
0
votes
2answers
119 views
Just want to decode the code into plain text
We would like to know more about function get_rnd_iv() and md5_encrypt() these function for using 128bit encoding. Now here we just want to know how to decode that code into plain text...
Here ...
0
votes
0answers
938 views
How to use Gcc 4.6.0 libquadmath and __float128 on x86 and x86_64
I have medium size C99 program which uses long double type (80bit) for floating-point computation. I want to improve precision with new GCC 4.6 extension __float128. As I get, it is a ...
0
votes
2answers
469 views
128 bit integer on cuda?
I just managed to install my cuda SDK under Linux Ubuntu 10.04. My graphic card is an NVIDIA geForce GT 425M, and I'd like to use it for some heavy computational problem.
What I wonder is: is there ...
0
votes
5answers
317 views
DataType for storing a long serial number (10 bytes)
We have a device which has a 10 byte serial number which must be read into our application and stored into a .net datatype. In the device it is stored as an unsigned 10-byte (80-bit) number. I don't ...
0
votes
4answers
317 views
Is there a library or other way to do 128-bit math operations?
I am writing a cryptography application and need to work with 128 bit integers.
In addition to standard add, subtract, multiply, divide, and comparisons, I also need a power and modulo function as ...