• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Converting byte array to biginteger?

 
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's my work assignment, i am trying to convert some byte array into BigInteger.

Originally, i am trying to implement same functionality as "BN_bin2bn" provides in openssl library. As per openssl docs, "BN_bin2bn() converts the positive
integer in big-endian form of length len at s into a BIGNUM and places it in ret. If ret is NULL, a new BIGNUM is created."




I tried to use BigInteger and provide the same value but both are returning different value:

1) Hex value : 53ABA93B9131C439D2942C7CBC483FA5
2) Java way:


it returns value = 111217238859577568889117274385450287013;

but when i passed same hex value in BN_bin2bn(), it returns 15173801958764481957

any idea, what i am doing wrong?

 
Bartender
Posts: 2236
63
IntelliJ IDE Firefox Browser Spring Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is full name of Base64 your are using org.apache.commons.codec.binary.Base64?This prints 5674831367621323064086805923944011128819378588560572305465 on my PC.


This prints 111217238859577568889117274385450287013.

By the way, Base64 is not the same as hexadecimal notation.
 
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Too difficult for this forum: moving.
 
author
Posts: 23956
142
jQuery Eclipse IDE Firefox Browser VI Editor C++ Chrome Java Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Paweł Baczyński wrote:
By the way, Base64 is not the same as hexadecimal notation.



The original definition doesn't mention either Base64 or hexadecimal notation either. Heck, it doesn't even mentions the usage of String (ie. ASCII notation).

It was described as a "positive integer in big-endian form". This describes a binary format to me.

Henry
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I agree with Henry - why are to using Base64? The hexadecimal number has nothing to do with Base64.

You can solve this very easily with one line of code. Look in the API documentation of BigInteger. You just have to pass the hex string and the appropriate other argument to one of the constructors of BigInteger.

Try it and let us know what you found...
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry for confusion...

My original input is in byte array itself. I have changed it to hex format so that i can share the input with you guys but I created confusion. I am sorry again.

I have used BigInteger one of the constructor but result doesn't match with BN_bin2bn

import java.math.BigInteger;

public final class Temp {
public static void main(String args[]) {
BigInteger output = new BigInteger("53ABA93B9131C439D2942C7CBC483FA5", 16);
String value = output.toString();
System.out.println(value);
}
}


As per the definition i have done the same thing above but still no luck. Any idea?
 
Campbell Ritchie
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You are giving input in hex and printing it in decimal
System.out.printf("%d = %<X%n", new BigInteger("53ABA93B9131C439D2942C7CBC483FA5", 0x10));
Output:
111217238859577568889117274385450287013 = 53ABA93B9131C439D2942C7CBC483FA5

So you have actually got the same number.>
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Omg!! I dint notice it. Sorry. any idea why it didnt match with the output of bin2bn method of OpenSSL library i mentioned earlier? I spent several hours but dint figured it out
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Any suggestion?
 
Jesper de Jong
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We don't know what different things you tried, so we can't tell you why you didn't succeed immediately. One thing is clear, it has nothing to do with Base64 encoding, so if you've been trying to use this then it's no wonder you didn't get the expected result.
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Whatever i tried earlier was wrong as suggested by Campbell..

as BN_bin2bn() method definition "BN_bin2bn() converts the positive integer in big-endian form " i tried now is convert each byte into unsigned positive but
then again result is not matching. This steps result matches with my wrong outputs.




It prints:

 
Campbell Ritchie
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try printing the number in hex; I tried it and it does seem to give the correct output.
 
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The hex number "53ABA93B9131C439D2942C7CBC483FA5" has 32 hex digits. The decimal number 15173801958764481957 has 20 decimal digits. Except for a single digit a hex representation is always more compact than a decimal representation so either BN_bin2bn() is faulty or you are using it wrongly. Since you have not shown the BN_bin2bn() code I'm betting you are using it wrongly. Post the BN_bin2bn() code making sure you post enough that you show the data definitions.
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I checked with my senior, he gave me wrong output. The output from the bin2bn is "3158851493".

I have written small C code to have the same functionality as bin2bn is having (considered only positive case). Here most important part is while loop. all work is done in their only.




The output is:


When i compare with my output only first 4 matches.. Rest are not matches. I understand that after 7 bit it is resetting the variable at line 30. So that changes i have to do
otherwise first 7 should match.

I also tried to use long instead of BigInteger as they using the same but still only first 4 matches, Rest are not matching.
 
Campbell Ritchie
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why on earth are you printing those numbers in decimal? Print them in hex and you will be able to see what is happening.
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It has to be decimal only. I am trying to check the feasibility of FPE algorithm which uses decimal as input/output only.

Also openSSL library(bin2bn method) returns decimal only.
 
Campbell Ritchie
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, but you can display the number in decimal and hex. When you know you have got it working, simply remove the hex displays.
And the number is probably not in decimal at all. It is in binary.
 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tushar Goel wrote:I checked with my senior, he gave me wrong output. The output from the bin2bn is "3158851493".


Sorry that that can't be right. How can a 32 hex character number be represented by only 10 decimal digits?


I have written small C code to have the same functionality as bin2bn is having (considered only positive case).


How to you know it has the same functionality?


Here most important part is while loop. all work is done in their only.




The output is:


When i compare with my output only first 4 matches.. Rest are not matches. I understand that after 7 bit it is resetting the variable at line 30. So that changes i have to do
otherwise first 7 should match.

I also tried to use long instead of BigInteger as they using the same but still only first 4 matches, Rest are not matching.



I'm at a loss as to what this is trying to prove! Since you are providing a hex number as argument I think you should be using BN_hex2bn() and not BN_dec2bn() !


Note - it sound to me like you are not checking the openssl error code. Always check error codes when working with C.
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Sorry that that can't be right. How can a 32 hex character number be represented by only 10 decimal digits?


It can. I have working C code which can do so. I am trying to figured it out the same in Java. It's FPE algorithm. After getting output from the bin2bn, we have to
find the modulus on this output then doing modulus addition again gives the desired output.

How to you know it has the same functionality?


I have compared the final output from both of them and its same.


I'm at a loss as to what this is trying to prove! Since you are providing a hex number as argument I think you should be using BN_hex2bn() and not BN_dec2bn() !


I am trying to match the output from my original solution with the C function. Why output matches for first 4 byte not others, if i do the same thing in Java. Possible
reason i thought is in C they have used unsigned long so it can store 8 extra byte data. So total data it can store is 8+8bytes. But Java doesn't support unsigned values,
so if i am use long variable and perform operation then for first 4 bytes it stores it into the next 4 bytes but after that 4-8 byte can't be stored. So after that it will signed output.
(which is negative) But i am not sure why it is not giving correct output for BigInteger, as it is 16 bytes long and can store the value. Still in this case first 4 bytes data matches
as i pasted i above post.
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
as per openssl documentation this is bin2bn method:




If i am consider all the positive scenario then control will come to while loop.
 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tushar Goel wrote:

Sorry that that can't be right. How can a 32 hex character number be represented by only 10 decimal digits?


It can.


Sorry but it can't ! A 32 hex character number (with a non-zero leading digit) will have at least 32 decimal digits! Last time I looked 32 was greater than 10.

Are you checking the error codes resulting from the openssl big number method calls you are using?
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
there are no error codes. It is working fine. No issue is coming..
 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tushar Goel wrote:there are no error codes. It is working fine. No issue is coming..



The source of BN_bin2bn() indicates that no hex or character conversion is being done on the input array. Though specified as unsigned char it is not treated as char but just as bytes. The bytes are packed into an unsigned long array presumably so that the maths can be more efficient.

I will bow out of this thread since I really don't understand what your aim is and think you are totally on the wrong track what ever your aim.
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am sorry for the confusion. My real aim is to implement bin2bn equivalence in java so that i can get the desired result. I have input in 16 byte bytes array and want
to convert it to the same as this method does.
 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tushar Goel wrote:My real aim is to implement bin2bn equivalence in java so that i can get the desired result. I have input in 16 byte bytes array and want
to convert it to the same as this method does.



In Java BigInteger has a constructor that takes a byte array containing the number as bytes (there is another optional argument to force it to be positive). This does exactly the same as your bin2bn() method. Neither bin2bn() or the BigInteger constructor can ever create 15173801958764481957 from 0x53ABA93B9131C439D2942C7CBC483FA5 however it is decoded. Based on what you have posted I think the code using the bin2bn() that you are trying to match is flawed.

I have used the openssl C interface for many years and never had a problem with matching BIGNUM values with Java BigInteger. What algorithm (not code) is this being used in? RSA?

 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Not RSA. FPE(Format preserving encryption). It is new algorithm. I have gdb logs as well. You can see, it gives the output i mentioned:


 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tushar Goel wrote:Not RSA. FPE(Format preserving encryption). It is new algorithm.



I am familiar with FPE but have never used it. There are several FPE algorthms so which one is this? Where did you get the C source code from? Can it be posted?
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Our tech team wrote this. Sorry i can't share the code. It is confidential.

If you see the output of bin2bn() it is "3158871461" where as input is "53 AB A9 3B 91 31 C4 39 D2 94 2C 7C BC 48 3F A5". If i add print statement in while method
present in the method then it will show all the iteration output and final output i pasted earlier. And if i passed the same input in BigInteger constructors then answer
doesn't match. I know may be i am doing something wrong but i can't figured it out.

I hope i am clear now.
 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tushar Goel wrote:Our tech team wrote this. Sorry i can't share the code. It is confidential.

If you see the output of bin2bn() it is "3158871461" where as input is "53 AB A9 3B 91 31 C4 39 D2 94 2C 7C BC 48 3F A5". If i add print statement in while method
present in the method then it will show all the iteration output and final output i pasted earlier. And if i passed the same input in BigInteger constructors then answer
doesn't match. I know may be i am doing something wrong but i can't figured it out.

I hope i am clear now.



I understand now but, as I have said before, you still cannot get "3158871461" from "53 AB A9 3B 91 31 C4 39 D2 94 2C 7C BC 48 3F A5" since the hex type number has too many digits to fit into the decimal number. The log trace says nothing and without even a code fragment showing how the bin2bn() is used I cannot help.
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Richard.. You have tried your best to help me. I appreciate that..

They have called it directly like below:



temp_output is input which i mentioned, cipher_block_len is 16 and output is BIGNUM which is just initialized and passed into this to work as an output
buffer. After executing this mentioned result is coming as debug logs showing.

May be i have to see any where else or think some thing else.
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have tried to use bn_hex2bn method as well as suggested by others and it returns the same output as bin2bn returns.



output:
number = 3158851493
 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tushar Goel wrote:I have tried to use bn_hex2bn method as well as suggested by others and it returns the same output as bin2bn returns.



output:
number = 3158851493



I'm not certain but I'm pretty sure that you can't use printf directly to print the content of a BIGNUM. I think you are only printing 8 internal bytes as a long. You need to use BN_bn2dec() (or BN_bn2hex()) to create a string representation and then print that string with printf.

 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

You need to use BN_bn2dec()


Wow!!! It works. Thank you very much. You saved me.

Can you please tell me if i have to convert Java output to the C output how can i do that? I have to give the output in same format as C output is.
 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tushar Goel wrote:
Can you please tell me if i have to convert Java output to the C output how can i do that? I have to give the output in same format as C output is.



Might be able to if you tell me what the decimal value should be. Note - the resulting decimal value MUST MUST MUST have more than 32 decimal digits. If it hasn't then it is not right.
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes it is longer than 32 bit. Decimal value i am getting is "111217238859577568889117274385450287013". I also wanted to ask why it is more than
32 bits? Doesn't understand the logic behind.

 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tushar Goel wrote:Yes it is longer than 32 bit. Decimal value i am getting is "111217238859577568889117274385450287013".


If you allow signed values then

If you want to force unsigned, as you probably will do for your encryption, then you will need to use

I also wanted to ask why it is more than
32 bits? Doesn't understand the logic behind.


32 bits is 8 hex characters. You have 32 hex characters which is 4 times the length of 32 bits!

 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yeah thanks Richard. I am able to achieve this but can we transfer decimal output "111217238859577568889117274385450287013" into "3158851493" which
is bignum output.

I understand both are same but in different format but can we changed decimal output to bignum output format.

 
Campbell Ritchie
Marshal
Posts: 79707
381
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No.

We have spent all week trying to explain to you that the decimal number 111217238859577568889117274385450287013 and the hexadecimal number 53ABA93B9131C439D2942C7CBC483FA5 are the same.
I don't know where you get 3158851493 from. Is it an unsigned representation of that hex number cast to an int?So, yes that latter number appears to be the unsigned representation of the bottom 32 bits of that number.

Good grief! Print the whole number in hex and get 53ab…3fa5 until you have got your number parsing sorted out. Then you can revert to decimal. It is much easier to have the numbers in the same format (=hex), and you can see what is happening.
 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tushar Goel wrote:Yeah thanks Richard. I am able to achieve this but can we transfer decimal output "111217238859577568889117274385450287013" into "3158851493" which
is bignum output.

I understand both are same but in different format but can we changed decimal output to bignum output format.



I despair! We have established that the value "3158851493" is most definitely not the result of "bignum output format". You got that number from the flawed use of printf by printing some part (possibly the first 8 bytes treated as a long) of the bignum. If your technical people have been using this in the generation of format preserving encryption then they need to be shot. Without seeing your format preserving encryption proprietary C code one can say no more.

What I find interesting is that you don't seem able to say which FPE algorithm you are using. OK the code used might be proprietary but the actual algorithm of any encryption technique should never be. Kerckhoffs's principle says that the security is always in the secrecy of key and not the secrecy of the algorithm.
 
Tushar Goel
Ranch Hand
Posts: 954
4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


Campbell says..
We have spent all week trying to explain to you that the decimal number


Agree and well understood. Sorry it took me long to understand this and keep asking same question. Problem is this thing is very new to me and also am
unable to understand it. That's why i keep asking same question. Do you know some tutorials to understand this? I googled it but not get any good document or
i overlook it.


Campbell says..
System.out.printf("The bottom 32 bits of i unsigned are %d%n", i.longValue() << 0x20 >>> 0x20);


Why you did this? How did you think this? As per you previous post here , you are trying to
divide it into 2 parts. First you move 0x20(32) position to the left and makes it signed then you right shift it 32 position and makes it unsigned. Can you please
explain this? I am totally lost in such operations.


Richard says..
OK the code used might be proprietary but the actual algorithm of any encryption technique should never be.


I am sorry, i am new to this. My seniors told me not to tell anything that's why i refrain myself to telling it. Sorry for that. We are using Ingenico BPS algorithm.


Richard says..
If your technical people have been using this in the generation of format preserving encryption then they need to be shot.


Let me speak to them. May be they understand.

 
Clowns were never meant to be THAT big! We must destroy it with this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic