The bignum tag has no wiki summary.
2
votes
1answer
26 views
OpenSSL BN_CTX usage
From here I understand that BN_CTX is a structure that holds BIGNUM temporary variables. When will those BIGNUM variables enter BN_CTX's BN_POOL? If I have a bignum_ctx BN_CTX *ctx;(either declared at ...
0
votes
2answers
190 views
A way to do RSA “encryption” of padded SHA256 hash using command line openssl
I'm trying to come up with a one-liner solution using openssl, that will take in padded SHA256 digest of a message (256 bytes in this case, for RSA2048), and apply RSA "decryption" to the 256 byte ...
1
vote
2answers
62 views
Alternative bignum library to GMP library that supports cosine function [closed]
Does anyone have a recommendation I am working on Mac OSX and trying to write and run C++ code.
I am running the code to answer the mathematical question known as the "Tammes Problem". I have a ...
-3
votes
1answer
121 views
How to implement bignum addition/multiplication from scratch in C++ [duplicate]
I have started writing a bignum library, with a vector of shorts to represent the value, a print function, and negative number support. However, I cannot find a good way to implement long addition, ...
2
votes
0answers
142 views
Shamir secret sharing and Lagrange interpolation (OpenSSL BIGNUM)
I've posted similar questions before, so i apologize in advance, but i'm just not able to find where i'm going wrong here.
I am implementing Shamir secret sharing using OpenSSL's BIGNUM library in C. ...
1
vote
1answer
180 views
Shamir's Secret Sharing using Bignum or Bigint or …?
I've got a generic cryptographic implementation using OpenSSL's BIGNUM library in C. Standard decryption is working fine, but i would also like to implement Shamir's secret sharing (SSS).
The ...
-2
votes
2answers
210 views
multiply number in strings c++ [closed]
what I'm looking for is using simple math on number in string
I'm trying to find the factorial of 100 and it's really big to put it in int or long long so I searched and found that string is the ...
1
vote
2answers
104 views
Algorithm to find most efficient base to store large integer
Very large integers are often stored as variable-length arrays of digits in memory, as opposed to a straightforward binary representation as is the case with most primitive 'int' or 'long' types, as ...
2
votes
1answer
64 views
Wrong correlation result for big numbers
The cor() function fails to compute the correlation value if there are extremely big numbers in the vector and returns just zero:
foo <- c(1e154, 1, 0)
bar <- c(0, 1, 2)
cor(foo, bar)
# ...
6
votes
1answer
396 views
AVX VMOVDQA slower than two SSE MOVDQA?
While I was working on my fast ADD loop (Speed up x64 assembler ADD loop), I was testing memory access with SSE and AVX instructions. To add I have to read two inputs and produce one output. So I ...
10
votes
3answers
224 views
Speed up x64 assembler ADD loop
I'm working on arithmetic for multiplication of very long integers (some 100,000 decimal digits). As part of my library I to add two long numbers.
Profiling shows that my code runs up to 25% of it's ...
0
votes
1answer
156 views
Binary GCD - too slow algorithm
According to Wikipedia (http://en.wikipedia.org/wiki/Binary_GCD_algorithm) I was trying to write binary GCD for bignums (up to 5000 digits).
My GCD itself looks like this:
bitset<N> ...
4
votes
1answer
60 views
How can I avoid stack overflow or segmentation fault in Coq nats?
I'm currently working with vellvm, developing a transformation on it. I'm a coq newbie.
While programming, I faced the following warning:
Warning: Stack overflow or segmentation fault happens ...
3
votes
3answers
129 views
Accessing the highest digits of large numbers from Python long
I'm working with numbers with tens of thousands of digits in python. The long type works beautifully in performing math on these numbers, however I'm unable to access the highest digits of these ...
0
votes
1answer
66 views
C++ Bignums from file
I'm attempting to read two bignums and an operator from a file into integer vectors (in order to do math on them) and I'm not allowed to use C++ strings. The file is in the format:
2308957235....
...
5
votes
7answers
242 views
High-precision program that calculates 2^n
I'm building a program in C that can get powers of 2. The user inputs the value of n, and the program calculates 2^n.
Here's the code.
The problem comes when I input 100
What I am getting:
...
1
vote
1answer
220 views
fast arbitrary precision c++ library: is __float128 faster than MPFR?
I know there are a couple of thread on similar topics ( What's the best (for speed) arbitrary-precision library for C++? and The best cross platform (portable) arbitrary precision math library ) ...
1
vote
1answer
110 views
Math using OpenSSL BIGNUMs: How to calculate multiplicative inverse?
I'm having some issues with OpenSSL BIGNUMs. I'm trying to implement a basic ElGamal protocol. The problem i'm having is that some of these calculations are not returning the values i'm expecting! ...
0
votes
1answer
156 views
.Net public key file (.pke) to OpenSSL PEM
We are trying to read in a public key file into our Delphi application so that we can use it for encrypting some data using OpenSSL. We are stuck at trying to populate the pRSA structure in ...
0
votes
0answers
131 views
Extracting a part of OpenSSL into one single, preprocessed source file
I'm currently researching the possibility of speeding up ECDSA signature verification via OpenCL in Bitcoin.
For this task I will first of all need both a bignum implementation in C (since OpenCL ...
1
vote
1answer
103 views
My Python code return different answers when it runs and when it is in step-by-step debugging [closed]
I try to write some code on Python2.7, which will able to implement a bignum arithmetic, using linear lists. I know, this is useless in Python, but it's my homework in collage. I write some working ...
0
votes
1answer
238 views
Convert a Series of Decimal Digits into a Hexadecimal Big Number in MASM
I'm writing a bunch of macros to deal with big numbers in MASM, and I have found myself needing to convert from a series of digits to a number. Basically, to get around MASM size restrictions, I've ...
0
votes
1answer
79 views
Finding additive inverse using OpenSSL BIGNUM
I need to calculate the additive inverse of a large (BIGNUM) prime in C. So, basically, i need to multiply by -1. Is there an easy way to do this that i've missed? I don't see any functions in the ...
0
votes
3answers
806 views
multiplying two large numbers in C / C++
I was trying to come up with the solution for that ... two large numbers, a and b are represented by char[] or char* and the goal is to multiply them into a third pointer, char* c:
void multiply( ...
1
vote
1answer
250 views
OpenSSL BIGNUM BN_mod_exp problems
I am having some issues coming up with "the correct answer" using OpenSSL's BIGNUM library. I am using OpenSSL 1.0.1c (May 2012, latest package available in the standard Mint repos).
I am using ...
0
votes
3answers
346 views
Calculating large power of a number
#include<iostream>
#include<cstdio>
#define M 1000000007
using namespace std;
long long int power(int a,int b)
{
if(b==0)
return 1;
else if(b==1)
return a;
...
1
vote
0answers
133 views
How can I install bignum lib for Node.js on Heroku?
I get the following error
-----> Installing dependencies with npm
> bignum@0.5.1 install /tmp/build_1xz3suiyqvjwh/node_modules/bignum
> node-gyp configure build
sh: node-gyp: not ...
2
votes
4answers
303 views
Dividing a 2x32 bit big integer by 1000
I have big number, time (micro seconds) stored in two 32bit variables.
I need a help, how to change micro seconds time into millisecond, so I can store result of difference in 32bit number.
More ...
6
votes
5answers
226 views
Exponentiation in Ruby 1.8.7 Returns Wrong Answers
I met this problem when I tried to compute 3**557 in irb.
Ruby and MacRuby both are installed in my Mac (OS X 10.8). And the version of ruby is 1.8.7, of MacRuby 0.12 (ruby 1.9.2).
rib and macirb gave ...
1
vote
1answer
345 views
Openssl, Invalid arguments ' Candidates are: int BN_set_word(bignum_st *, ?) '
I am using OpenSSL for a cuda project.
I just imported all the project from win to linux (Eclipse)
I solved all the dependencies except this annoying error:
Invalid arguments ' Candidates are: ...
3
votes
1answer
760 views
karatsuba multiplication, recursion problems
I'm trying to implement multiplication of large numbers using karatsuba technique. I'm stuck in a seg fault which I'm not able to get around. The program seems to be always dropping out after 3 or 4 ...
0
votes
2answers
104 views
String to BigNumber conversion, a particular solution
I'm writing a Java program to process electronic tax forms that come in some pseudo-xml format.
The resulting amount of tax to be paid or refunded comes in the following format: 13-char long String of ...
0
votes
1answer
321 views
Bignum division with an unsigned 8 bit integer. C
I've created an algorithm for dividing a integer up to 255 bytes in size by an 8 bit integer and it works with the tests I've done. Does anyone have any comments for it or any improvement suggestions? ...
1
vote
2answers
249 views
How to present big_int?
I am working with big_int type. I looked in the OCaml's library Pervasives.
For example: in Int32
let t = 5l
Printf.printf "%ld" t
How can I define t and which %?d if I want to declare it is an ...
2
votes
1answer
456 views
ruby: representing binary string as Bignum
I need to have a numeric representation of a binary string of arbitrary length. This seemingly trivial task unexpectedly turned out to be complex. The best I could come up with so far is
...
0
votes
2answers
294 views
RangeError: bignum too big to convert into `long' (Ruby)
num = "0000001000000000011000000000000010010011000011110000000000000000"
for n in 0...num.length
temp = num[n]
dec = dec + temp*(2**(num.length - n - 1))
end
puts dec
When i am running this ...
0
votes
1answer
359 views
How to find the log of a number?
I have a number (num1) which is 18 digits long. I am storing it in an integer array.
I have another number (num2) which is also 18 digits long. This is also being stored in an integer array.
I have ...
1
vote
1answer
642 views
convert ruby String to Bignum
I have a binary string, say
x = "c1\x98\xCCf3\x1C\x00.\x01\xC7\x00\xC0"
(actually much longer). I need to have it represented as Bignum, for the purposes of further conversion to base-something ...
0
votes
3answers
361 views
Is there support for arbitrary precision arithmetic in C#
Does c# support arbitrary precision arithmetic, I think they are also called bignums?
If it doesn't which libraries would you recommend that does support it?
1
vote
1answer
697 views
custom data type in C
I am working with cryptography and need to use some really large numbers. I am also using the new Intel instruction for carryless multiplication that requires m128i data type which is done by loading ...
2
votes
1answer
179 views
How to implement bignum in Scheme given the following grammar?
I think Scheme has a built-in type Bignum for handling arbitrarily large numbers, but if I want to implement it myself how would I do it?
If I am not mistaken it has the following grammar:
|n| = () ...
1
vote
0answers
90 views
How do initialize iOS vecLib vU1024 data type?
Using the iOS vecLib BigNum.h vU1024 data type, how should I go about initializing with some number?
For example, how do I get the big number 938429845792837192837293487293458734985791823123918237 in ...
10
votes
1answer
905 views
Can long integer routines benefit from SSE?
I'm still working on routines for arbitrary long integers in C++. So far, I have implemented addition/subtraction and multiplication for 64-bit Intel CPUs.
Everything works fine, but I wondered if I ...
2
votes
3answers
2k views
Efficient Multiply/Divide of two 128-bit Integers on x86 (no 64-bit)
Compiler: MinGW/GCC
Issues: No GPL/LGPL code allowed (GMP or any bignum library for that matter, is overkill for this problem, as I already have the class implemented).
I have constructed my own ...
1
vote
3answers
713 views
Efficient Exponentiation For HUGE Numbers (I'm Talking Googols)
I am in the midst of solving a simple combination problem whose solution is 2^(n-1).
The only problem is 1 <= n <= 2^31 -1 (max value for signed 32 bit integer)
I tried using Java's BigInteger ...
2
votes
1answer
214 views
Rails: Storing a 256 bit checksum as binary in database
I'm trying to store a SHA-2 256 bit checksum in a column:
create_table :checksums do |t|
t.binary :value, :null => false, :limit => 32
end
I'm storing in the value like so:
c = ...
0
votes
1answer
544 views
How do i get Math.Sqrt to return a Bignum and not a Float?
I'm trying to calculate the square root of a really big number in Ruby. The problem I have is that the Math.sqrt function looks like this
sqrt(numeric) → float
If I feed it a really big number, it ...
0
votes
2answers
125 views
Check if bit is set on BigNum
I have a bignum formatted like a string like this: "123456789123456789123456789" and I need to check if a specified bit is set. The components are single digits in this string.
Usually I would do it ...
2
votes
1answer
289 views
Converting a GMP integer to a base N integer
GMP allows to print a mpz_t up to base 62, but I want to represent a number into any base N, and for this I first need to generate an array of integers (let us say I will limit myself to base 2 ^ 64), ...
2
votes
1answer
370 views
128 bit Miller Rabin Primality test
I wanted to implement Miller Rabin Primality Test for large numbers. I wanted to know how to deal with such huge numbers in C++. Should I write any special function to store and process those large ...
