C/C++ :: Convert Sha256 To Base64?

Mar 28, 2015

I have seen a code in one site which could convert sha256 hash to base64 with C language but when I tested it, it didn't work at that time so I ignored. I need it now but unfortunately I can't find it through the net anymore. I want to ask if there is such code in C or other languages that can convert sha256 hash to base64?

View 1 Replies


ADVERTISEMENT

C++ :: Convert File (Audio / Image / Video) To Base64?

Sep 7, 2014

I'm looking to convert audio, images, video to base64 in c++, and through many searches on the web I've only seem to come up with string > base64.

When I view a .mp3 file for example, there are many characters there that are not available to be used in my string to encode.

[URL] ....

I have this code set up in my project, and all I want is to be able to give the location of any file and have it encode (could just encode to a string, I can handle writing it to a file), and then give a location to put the decoded file as well.

I'm not sure exactly where to even start.

View 6 Replies View Related

C++ :: Generate A Sha256 Hash With Std String?

May 22, 2013

I am trying to generate a sha256 hash with std string, but i can't get this incomplete code puzzle to work [URL] .....

void main() {
string pbData1 = "HELLO";
BYTE* pbOutputBuffer;
CryptoPP::SHA256().CalculateDigest(pbOutputBuffer, (byte*)pbData1.c_str(), pbData1.size());
cout << pbOutputBuffer;
}

my problem is converting 'const char *' to 'const byte *' ..etc

View 1 Replies View Related

C/C++ :: Write A Code That Can Crack The Sha256?

Mar 28, 2015

is it possible to write a code that can crack the sha256 hash when you know the form of password? for example the password form is *-********** which is 12-13 characters long and the first char is one number from 1 to 25, second one is hyphen and in each char from the third one to the end, you can put a...z, A...Z and 0...9 and after guessing each pass, the code convert the pass to sha256 and see whether the result hash is equal to our hash or not and then print the correct pass. I know all possible numbers is a big number ((26+26+10)^10) but I want to know that: 1- Is it possible to write such code? 2-if yes, is it possible to run whole code in less than one day(because I think it takes a lot of time to complete the whole code)? 3-Since I can't ask you to write a code for me, how and where can I ask for this code? 4-if no, is it possible to write such code in other programming languages?

View 2 Replies View Related

C++ :: How To Do CRC Calculation For Base64 String

Aug 1, 2013

I am trying to calculate a CRC of a Base64 string.I give you the correct checksum : 2942042514...And now the string :

AQAAAAAAAABsYAAAAAAAAENvbXByZXNzZWRUaXRsZQB4nO0d2XIaSbI+hZ13
m0NCR0QNE7KOHcXKlkMwtnhyIIRkdjGwgGxpP35386jqursRsk0zQygkd+dR
lVmVmZVdl//3Xyl+E4/iixiJivgqBmIm5mIoJmIsfhW/iLp4LWrwbwUwY9EH
[code]....

I tried CRC 16, 32 and with polynomial 0xEDB88320L, and with all these tries, I cannot find the correct checksum, it is my main problem.I don't want C++ code source, but I am searching for the method or algorithm to find it. If you want to know, this string in base64 contains an string compressed in zip, which contains an UTF16 XML. I want to modify information, and modify Adobe Projet (prproj)

View 6 Replies View Related

C/C++ :: How To Do CRC Calculation For Base64 String

Aug 1, 2013

I am trying to calculate a CRC of a Base64 string. I know the answer of the checksum, but I don't how to calculate it (It is for Adobe project).

I give you the correct checksum : 2942042514

And now the string :
AQAAAAAAAABsYAAAAAAAAENvbXByZXNzZWRUaXRsZQB4nO0d2XIaSbI+hZ13
m0NCR0QNE7KOHcXKlkMwtnhyIIRkdjGwgGxpP35386jqursRsk0zQygkd+dR
lVmVmZVdl//3Xyl+E4/iixiJivgqBmIm5mIoJmIsfhW/iLp4LWrwbwUwY9EH
+C1gx+KesH+IjjgTr4Bqj2h+Ey0hxRHQTMQNcHwSV/A0EYsA3oFSFlDngDAf

[Code] ....

I tried CRC 16, 32 and with polynomial 0xEDB88320L, and with all these tries, I cannot find the correct checksum, it is my main problem.

View 12 Replies View Related

C++ :: Stream Buffer To Base64 String

Oct 2, 2013

I have problem with this code:

#include <windows.h>
#include <stdio.h>
#include <gdiplus.h>
#include "ScreenCap.h"
#include <wchar.h>
#include "base64.h"
#include <sstream>

using namespace Gdiplus;
int GetEncoderClsid(WCHAR *format, CLSID *pClsid) {

[Code] ....

This function return me a long series of Y ended with other chars but not the base64 string.

I think the problem is std::string encodedstring = base64_encode(buffer, dwBufferSize); but I can't figure out the problem.

The base64 function is: [URL] ....

View 2 Replies View Related

C++ :: Class Template Convert Which Can Convert Itself To Any Data Type

Sep 23, 2012

Code:
template<class T>
class Convert {
T data;
public:
Convert(const T& tData = T()) : data(tData)

[Code] ....

Why do we use operator? Is float and double function names below?

Code:
Convert<int>::operator<float> float();
Convert<int>::operator<double> double();

View 1 Replies View Related

C :: How To Convert PPM Into JPG

Nov 17, 2013

I captured .ppm from avi file. How can I convert .ppm into .jpg only using C.

View 3 Replies View Related

C++ :: Can't Convert To Hex

Mar 30, 2014

I was assigned a problem involving using buffer overflow to access a different function than I was supposed to. I was able to figure out how to modify the point in stack that I need to change using a printf statement, however what doesn't make sense is that when I use the input "AABBCCDDEEFFGGx86x64x00x00" the stack changes to 78363878 I looked up the ascii codes and I assume that it's not converting x86, but using the input x86 instead.

View 4 Replies View Related

C++ :: Can't Convert Char To Int

Nov 9, 2013

I am writing a basic keylogger and i want to add data to log file, but it says that i cant convert char to int. Everything else works fine.

Code:
#include <iostream>#include <windows.h>
#include <stdio.h>
#include <time.h>
using namespace std;

[Code] ....

View 3 Replies View Related

C :: How To Convert Char To Int

Nov 24, 2014

Example

char A[4]
gets(A) --> 1234

View 11 Replies View Related

C :: Convert DAT File Into TXT

May 19, 2014

I have written this to convert this .dat file into .txt file but it is not working well. It create one .txt file and also with content but contain some garbage content also .

Code:

#include <stdio.h>
#include <stdlib.h>
void fileInput(cfPtr);
void convertText(cfptr);
int menu();
}

[code]....

View 1 Replies View Related

C++ :: Convert Hex To ASCII

May 7, 2013

I want to convert Hex:390041 to ascii "90A",

39: 9
00: 0 -->Null
41: A

i am getting only "9" in the bytearray,i know 0 is terminating the array

unsigned int bytes[3];
int j=0,counter=0;
char c[2];

[Code]....

View 1 Replies View Related

C++ :: Convert A Value Into A String?

May 21, 2013

I would like to convert a value into a string, and extract a value from a string. And then call these functions in the main.

template<class T>
string toString (T value) // convert a value into a string {
stringstream ss;

[Code[ .....

Are above functions correct? And how should I call in main?

int main() {
const int SIZE=10;
toString<int> intValue(SIZE); //seems not right
toString<double> doubleValue(SIZE); // seems not right
}

View 3 Replies View Related

C++ :: How To Convert Int To Char

Jan 24, 2015

if we have int x = 5; and we want to convert x which is == 5 to char so for example char number = x doesnot work i understand why , but how to convert it ?

View 14 Replies View Related

C# :: Write Five And Convert To Int

Jun 10, 2014

i'm using TryParse to convert 5 in string to 5 int but i want to give the possibility to the user to write five not 5.

View 5 Replies View Related

C/C++ :: How To Convert A Decimal Value To Hex

Mar 27, 2014

How would you go about converting a decimal value to hex and then do math? Every example of converting decimal to hex that I have seen creates an array and I wouldn't be able to do math if I did that. Something like this.

15 decimal to hex F
17 decimal to hex 11
F hex + 11 hex = 20

View 8 Replies View Related

Visual C++ :: How To Convert IP To Hex

Sep 27, 2012

I don`t known how to convert IP to hex .

In this link [URL] .... . I see hex IP : Hex IP 0x462a1779

I want to convert IP "70.42.23.121" to "0x462a1779"

Code:
#include <winsock.h>
#include <windows.h>
#include <stdio.h>
UINT32 ip_to_hex(UINT32 ip_add) {
UINT32 ip_hex;
//code convert ip to hex
return ip_hex;

[Code[ ....

And this is result : 7b 1e 80 and a , not 0a

Further i think we must separate each octect by a (dot) . , Then convert decimal to hex.

View 6 Replies View Related

C :: Convert String To Arithmetic?

Mar 16, 2014

I've got this string: Code: char * string = "2+2"; I want to get an integer value = 4 from this. How would I go about doing this.

View 1 Replies View Related

C++ :: Convert Int Array To Integer

Nov 23, 2013

Is there anyway we can make an integer array to an integer...

View 4 Replies View Related

C :: How To Convert Array To Hexadecimal

Feb 21, 2013

I have an array:

Code: int array1[]={0,1,1,0}

I need to convert the entire array to Hexadecimal.

My first thoughts to the approach was to convert the array to a string then strcmp but i cant seem to find how to convert an array to a string either.

How to convert the array to hexadecimal directly? or, How to convert the array to a string to be strcmp'ed?

View 6 Replies View Related

C :: Convert String To Double

Mar 6, 2015

I want to convert string to double. I refered this strtod() - C Library Function Example

Code:

#include <stdio.h>
#include <string.h>
int main() {
const char string[] = "$$GPRMC,013732.000,A,3150.7238,N,11711.7278,E,0.00,0.00,220413,,,A*68";
char term;
const char delims[] = ",";
}

[code]....

View 6 Replies View Related

C++ :: How To Convert Numbers Into Words

Apr 29, 2014

How to convert numbers into words using ragged dynamic arrays? this is my solution:

int main()
{
char *Units[]={"ZERO", "ONE", "TWO", "THREE","FOUR","FIVE", "SIX","SEVEN", "EIGHT", "NINE"};
char *teens []={"TEN", "ELEVEN", "TWELVE","THIRTEEN", "FOURTEEN", "FIFTEEN", "SIXTEEN", "SEVENTEEN", "EIGHTEEN","NINETEEN" };
char *hundreds []= {"HUNDRED"};
char *tens []={ "ZERO", "TEN", "TWENTY", "THIRTY", "FOURTY", "FIFTY", "SIXTY", "SEVENTY", "EIGHTY", "NINETY"};
char *currency []={"Dollars"};

[code]....

View 2 Replies View Related

C++ :: How To Convert Data Types

Jan 9, 2015

How to convert these data types? i have an array of bytes in unsigned char[] array, and need to convert to const void* pointer.

View 3 Replies View Related

C++ :: Convert String To Char

Apr 30, 2013

Is there anyway to convert std::string to char*?

Like:

std::string x="hello world";
char* y=x;

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved