go 基于gin编写encode、decode、base64加密接口

本文涉及的产品
密钥管理服务KMS,1000个密钥,100个凭据,1个月
简介: go 基于gin编写encode、decode、base64加密接口

前言

基于gin编写encode、decode、base64加密接口,代码仓库:https://github.com/Rodert/go-demo/tree/main/go_gin_demo , 如果无法下载留言邮箱。

代码

注释很详细,入门级教程代码

package main

import (
  "encoding/base64"
  "fmt"
  "log"
  "net/http"

  "github.com/gin-gonic/gin"
)

func main() {
  router := gin.Default()
  //ping test
  router.GET("/ping", func(c *gin.Context) {
    c.JSON(200, gin.H{
      "message": "pong",
      "encode":  "/encode",
      "decode":  "/edecode",
    })
  })

  // router.GET("/someGet", getting)
  // router.POST("/somePost", posting)
  // router.PUT("/somePut", putting)
  // router.DELETE("/someDelete", deleting)
  // router.PATCH("/somePatch", patching)
  // router.HEAD("/someHead", head)
  // router.OPTIONS("/someOptions", options)

  //test
  router.GET("/encode", func(c *gin.Context) {
    q, ok := c.GetQuery("q")
    if ok {
      c.JSON(http.StatusOK, gin.H{
        "你的输入是:": q,
        "你的编码是:": my_encode(q),
      })
    } else {
      c.JSON(http.StatusOK, gin.H{
        "你的输入不合法": "输入合法字符",
      })
    }
  })

  //dis var。路由配置,处理字符串。
  v1 := router.Group("/dis_var")
  {
    v1.GET("encode", my_encode_router)
    v1.GET("decode", my_decode_router)
    v1.GET("base64", my_base64_router)
  }

  //upload file,performability。上传文件并存储到指定位置
  router.MaxMultipartMemory = 8 << 20 // 8 MiB
  router.POST("/upload", func(c *gin.Context) {
    // single file
    file, _ := c.FormFile("file")
    log.Println(file.Filename)
    // Upload the file to specific dst.
    c.SaveUploadedFile(file, "D://1.png")
    c.String(http.StatusOK, fmt.Sprintf("'%s' uploaded!", file.Filename))
  })

  router.Run(":8090")
}

//encode编码
func my_encode_router(c *gin.Context) {
  q, ok := c.GetQuery("q")
  if ok {
    c.JSON(http.StatusOK, gin.H{
      "你的输入是:": q,
      "编码是:":   my_encode(q),
    })
  } else {
    c.JSON(http.StatusOK, gin.H{
      "你的输入不合法": "输入合法字符",
    })
  }
}

//decode字符串解码
func my_decode_router(c *gin.Context) {
  q, ok := c.GetQuery("q")
  if ok {
    c.JSON(http.StatusOK, gin.H{
      "你的输入是:": q,
      "解码是:":   my_decode(q),
    })
  } else {
    c.JSON(http.StatusOK, gin.H{
      "你的输入不合法": "输入合法字符",
    })
  }
}

//base64加密
func my_base64_router(c *gin.Context) {
  q, ok := c.GetQuery("q")
  if ok {
    c.JSON(http.StatusOK, gin.H{
      "你的输入是:":        q,
      "base64加密后结果是:": my_base64(q),
    })
  } else {
    c.JSON(http.StatusOK, gin.H{
      "你的输入不合法": "输入合法字符",
    })
  }
}

func my_encode(s string) string {
  input := []byte(s)

  encodeString := base64.StdEncoding.EncodeToString(input)
  // fmt.Println(encodeString)
  return encodeString
}

func my_decode(s string) []byte {

  // 对上面的编码结果进行base64解码
  decodeBytes, err := base64.StdEncoding.DecodeString(s)
  if err != nil {
    log.Fatalln(err)
  }
  // fmt.Println(string(decodeBytes))
  return decodeBytes
}

func my_base64(s string) []byte {
  input := []byte(s)

  // 如果要用在url中,需要使用URLEncoding
  uEnc := base64.URLEncoding.EncodeToString([]byte(input))
  // fmt.Println(uEnc)

  uDec, err := base64.URLEncoding.DecodeString(uEnc)
  if err != nil {
    log.Fatalln(err)
  }
  return uDec
}

go run gindemo.go

演示

目录
相关文章
|
16天前
|
存储 Rust Go
Go nil 空结构体 空接口有什么区别?
本文介绍了Go语言中的`nil`、空结构体和空接口的区别。`nil`是预定义的零值变量,适用于指针、管道等类型;空结构体大小为0,多个空结构体实例指向同一地址;空接口由`_type`和`data`字段组成,仅当两者均为`nil`时,空接口才为`nil`。
Go nil 空结构体 空接口有什么区别?
|
26天前
|
存储 安全 Java
|
26天前
|
存储 算法 安全
SpringBoot 接口加密解密实现
【10月更文挑战第18天】
|
1月前
|
算法 安全 Go
RSA加密算法详解与Python和Go实现
RSA加密算法详解与Python和Go实现
94 1
|
2月前
|
存储 Go
Go to Learn Go之接口
Go to Learn Go之接口
31 7
|
1月前
|
安全 测试技术 Go
Python 和 Go 实现 AES 加密算法的技术详解
Python 和 Go 实现 AES 加密算法的技术详解
79 0
|
3月前
|
JavaScript 数据安全/隐私保护 Python
网易云音乐搜索接口JS逆向: Params、encSecKey加密和AES实战
网易云音乐搜索接口JS逆向: Params、encSecKey加密和AES实战
169 4
|
3月前
|
XML 存储 JSON
在Go中使用接口:实用性与脆弱性的平衡
在Go中使用接口:实用性与脆弱性的平衡
|
3月前
|
SQL 安全 测试技术
[go 面试] 接口测试的方法与技巧
[go 面试] 接口测试的方法与技巧
|
3月前
|
存储 安全 程序员