中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

基于openssl的base64加解密是怎樣的

發布時間:2021-12-14 17:40:32 來源:億速云 閱讀:218 作者:柒染 欄目:互聯網科技

今天就跟大家聊聊有關基于openssl的base64加解密是怎樣的,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

1.什么是base64 

base64指64個可打印字符,“A-Z” 、“a~z”、 “0~9” 、 “+” 、“/” 共64個。一般使用base64來表示二進制數據(二進制流的每個字節不可能全部是可見字符,所以就傳送不了,可以采用base64轉換后傳輸)。

2.使用openssl的庫封裝base64的加解密庫

    1. 使用動態內存分

      /***********************************************
      * @Filename: base64_1_by_openssl.c
      * @Author:edwin
      * @Description: ---
      * @Create: 2020-12-21 10:19:20
      * @Last Modified: 2020-12-21 10:31:39
      ***********************************************/
      
      #include <string.h>
      #include <stdio.h>
      #include <stdbool.h>
      
      #include "openssl/evp.h"
      #include "openssl/bio.h"
      #include "openssl/buffer.h"
      
      char * base64_encode(const char *input, int length, bool newLine);
      char * base64_decode(const char *input, int length, bool newLine,int *outLength);
      
      int main(int argc, char* argv[])
      {
          bool newLine = false;
          char input[64] = "test string";
          int outlength;
          char * encode = base64_encode(input, strlen(input), newLine);
          char * decode = base64_decode(encode, strlen(encode), newLine,&outlength);
      	
          printf("base64 encode:%s\n",encode);
          printf("base64 decode:%s\n,output length:%d\n",decode,outlength);
          free(encode);
          free(decode);
          return 0;
      }
      
      // base64編碼,輸出長度為字符串的長度,如果需要可以再使用strlen獲取
      char * base64_encode(const char *input, int length, bool newLine)
      {
          BIO *bmem = NULL;
          BIO *b64 = NULL;
          BUF_MEM *bptr;
      
          b64 = BIO_new(BIO_f_base64());
          if (!newLine) {
              BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
          }
          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);
          BIO_set_close(b64, BIO_NOCLOSE);
      
          char *buff = (char *)malloc(bptr->length + 1);
          memcpy(buff, bptr->data, bptr->length);
          buff[bptr->length] = '\0';
          BIO_free_all(b64);
      
          return buff;
      }
      
      // base64解碼
      char * base64_decode(const char *input, int length, bool newLine,int *outLength)
      {
          BIO *b64 = NULL;
          BIO *bmem = NULL;
          char *buffer = (char *)malloc(length);
          if(buffer == NULL){
              return NULL;
          }
          memset(buffer, 0, length);
          b64 = BIO_new(BIO_f_base64());
          if (!newLine) {
              BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
          }
          bmem = BIO_new_mem_buf(input, length);
          bmem = BIO_push(b64, bmem);
          *outLength = BIO_read(bmem, buffer, length);
          BIO_free_all(bmem);
      
          return buffer;
      }


      2.    使用數組,報文相對穩定,這樣降低系統開銷(雖然可能微不足道)

      /***********************************************
      * @Filename: base64_2_by_openssl.c
      * @Author:edwin
      * @Description: ---
      * @Create: 2020-12-21 10:19:20
      * @Last Modified: 2020-12-21 11:33:41
      ***********************************************/
      
      #include <string.h>
      #include <stdio.h>
      #include <stdbool.h>
      
      #include "openssl/evp.h"
      #include "openssl/bio.h"
      #include "openssl/buffer.h"
      
      char * base64_encode(const char *input, int inputLength, bool newLine,char *output,int outputMaxLength);
      char * base64_decode(const char *input, int inputLength, bool newLine,char *output,int outputMaxLength,int *outLength);
      
      int main(int argc, char* argv[])
      {
          bool newLine = false;
          char input[64] = "Hello World!i\nsddsdds";
          char output[64];
          char * encode = base64_encode(input, strlen(input), newLine,output,64); 
          printf("base64 encode:%s\n",encode);
          int  outlength=0;
          char * decode = base64_decode(encode, strlen(encode), newLine,output,64,&outlength);
          printf("base64 decode:%s\n,output length:%d\n",output,outlength);
          return 0;
      }
      
      // base64 編碼
      char * base64_encode(const char *input, int inputLength, bool newLine,char *output,int outputMaxLength)
      {
          BIO *bmem = NULL;
          BIO *b64 = NULL;
          BUF_MEM *bptr;
      
          b64 = BIO_new(BIO_f_base64());
          if (!newLine) {
              BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
          }
          bmem = BIO_new(BIO_s_mem());
          b64 = BIO_push(b64, bmem);
          BIO_write(b64, input, inputLength);
          BIO_flush(b64);
          BIO_get_mem_ptr(b64, &bptr);
          BIO_set_close(b64, BIO_NOCLOSE);
          
          if(bptr->length >= outputMaxLength){
              BIO_free_all(b64);
              return NULL;
          }
          memcpy(output, bptr->data, bptr->length);
          output[bptr->length] = '\0';
          BIO_free_all(b64);
      
          return output;
      }
      
      // base64 解碼,輸出數組的大小應大于輸入字符串大小以保證有足夠空間
      char * base64_decode(const char *input, int inputLength, bool newLine,char *output,int outputMaxLength,int *outLength)
      {
          BIO *b64 = NULL;
          BIO *bmem = NULL;
          b64 = BIO_new(BIO_f_base64());
          if (!newLine) {
              BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
          }
          bmem = BIO_new_mem_buf(input, inputLength);
          bmem = BIO_push(b64, bmem);
          *outLength = BIO_read(bmem, output, inputLength);
      	if(*outLength >= outputMaxLength){
          	BIO_free_all(bmem);
      		return NULL;
      	}
      	output[*outLength] = '\0';
          BIO_free_all(bmem);
          return output;
      }


       

看完上述內容,你們對基于openssl的base64加解密是怎樣的有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桑植县| 刚察县| 稻城县| 扶绥县| 永胜县| 山东省| 吉安县| 拜泉县| 会宁县| 湟源县| 奉化市| 中江县| 高邮市| 卢氏县| 海兴县| 铜梁县| 大化| 舟山市| 宾川县| 吴桥县| 永康市| 乳山市| 永修县| 屏山县| 遵义市| 宝兴县| 舞钢市| 津市市| 五河县| 湟源县| 禹州市| 静乐县| 静海县| 清水县| 民权县| 东辽县| 沈阳市| 乌苏市| 彭州市| 静安区| 南丹县|