|
-
Jul 23rd, 2018, 04:21 AM
#20
Thread Starter
Member
Re: Number Encryption Algorithm
 Originally Posted by Inferrd
Being asked to crack encryption methods without any clues sounds like a very strange homework assignment to me. Anyway...
Your unencrypted numbers are floating point numbers. Your encrypted data consists of 5 byte values.
In .NET, the Single Data Type is one of the Data Types that is used to hold floats. It uses just 4 bytes internally.
You can use the BitConverter.GetBytes(Single) Method to examine those 4 Byte values.
The BitConverter.ToSingle(Byte(), Int32) Method goes the other way (produces a floating point number from 4 Byte values).
yes i think that is exactly what i need
i will give it a try
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|