使用base64算法加密和解密

时间:2012-11-26 10:19:04

标签: c openssl encryption

我正在使用openssl库来编码和解码为base64,这是我的加密代码

#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;
}

这个时的o / p是NjI0MjQ3MwAECA == rand()输出是1308702736(这是rand gen o / p的一个实例的一个例子),当我使用解码函数解码这个值时我得到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 个答案:

答案 0 :(得分:3)

printf("rand():%d\n", rand());
sprintf(nonce, "%d", rand());

你拨打rand两次,给你两个不同的号码。 NjI0MjQ3MwAECA==解码为624247