base64へのエンコードとデコードの目的でopensslライブラリを使用しています。これは私の暗号化コードです
#include <openssl/buffer.h>
#include <stdlib.h>
char *base64(const unsigned char *input, int length);
int main(int argc, char **argv)
{
char nonce[10];
srand(time(NULL));
printf("rand():%d\n", rand());
sprintf(nonce, "%d", rand());
char *output = base64(nonce, sizeof(nonce));
printf("Base64: *%s*\n", output);
free(output);
}
char *base64(const unsigned char *input, int length)
{
BIO *bmem, *b64;
BUF_MEM *bptr;
char *buff;
b64 = BIO_new(BIO_f_base64());
bmem = BIO_new(BIO_s_mem());
b64 = BIO_push(b64, bmem);
BIO_write(b64, input, length);
BIO_flush(b64);
BIO_get_mem_ptr(b64, &bptr);
buff = (char *) malloc(bptr->length);
memcpy(buff, bptr->data, bptr->length-1);
buff[bptr->length-1] = '\0';
BIO_free_all(b64);
return buff;
}
NjI0MjQ3MwAECA==のときのこのo/pは1308702736でした(これはrand gen o / pの1つのインスタンスの例です)、この値をデコードするためにデコード関数を使用すると、6242473が得られます。完全に異なります。デコード時に1308702736を取得する必要があります。
私のデコード機能は次のとおりです
#include <string.h>
#include <openssl/sha.h>
#include <openssl/hmac.h>
#include <openssl/evp.h>
#include <openssl/bio.h>
#include <openssl/buffer.h>
char *unbase64(unsigned char *input, int length);
int main(int argc, char **argv)
{
char *output = unbase64("NjI0MjQ3MwAECA==\n", strlen("NjI0MjQ3MwAECA==\n"));
printf("Unbase64: *%s*\n", output);
free(output);
}
char *unbase64(unsigned char *input, int length)
{
BIO *b64, *bmem;
char *buffer = (char *)malloc(length);
memset(buffer, 0, length);
b64 = BIO_new(BIO_f_base64());
bmem = BIO_new_mem_buf(input, length);
bmem = BIO_push(b64, bmem);
BIO_read(bmem, buffer, length);
BIO_free_all(bmem);
return buffer;
}
注:このコードをコンパイルするには、-lcryptoを使用する必要があります。これを解決するには助けが必要です。ここで立ち往生し、解決策をグーグルで検索しましたが、何も得られませんでした。また、base64デコーダーbへの入力が\ nで終了する理由についてもう1つ疑問がありますか?これで私を助けることができますか