• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Go语言实现AzDG可逆加密算法实例

    本文实例讲述了Go语言实现AzDG可逆加密算法。分享给大家供大家参考。具体实现方法如下:

    复制代码 代码如下:
    package main

    import (
     "fmt"
     "crypto/md5"
     "encoding/base64"
     "time"
    )

    var cipher = "密鑰"
    var h = md5.New()

    func cipherEncode(sourceText string) string { 
     h.Write([]byte(cipher))
     cipherHash := fmt.Sprintf("%x", h.Sum(nil))
     h.Reset()
     inputData := []byte(sourceText)
     loopCount := len(inputData)
     outData := make([]byte,loopCount)
     for i:= 0; i loopCount ; i++ {
      outData[i] = inputData[i] ^ cipherHash[i%32]
     } 
     return fmt.Sprintf("%s", outData)
    }

    func encode(sourceText string) string { 
     h.Write([]byte(time.Now().Format("2006-01-02 15:04:05")))
     noise := fmt.Sprintf("%x", h.Sum(nil))
     h.Reset()
     inputData := []byte(sourceText)
     loopCount := len(inputData)
     outData := make([]byte,loopCount*2)
     
     for i, j := 0,0; i loopCount ; i,j = i+1,j+1 {  
      outData[j] = noise[i%32]
      j++
      outData[j] = inputData[i] ^ noise[i%32]
     }
     
     return base64.StdEncoding.EncodeToString([]byte(cipherEncode(fmt.Sprintf("%s", outData))))
    }

    func decode(sourceText string) string {
     buf, err := base64.StdEncoding.DecodeString(sourceText)
     if err != nil {
      fmt.Println("Decode(%q) failed: %v", sourceText, err)
      return ""
     }
     inputData := []byte(cipherEncode(fmt.Sprintf("%s", buf)))
     loopCount := len(inputData)
     outData := make([]byte,loopCount)
     for i, j := 0,0; i loopCount ; i,j = i+2,j+1 {  
      outData[j] = inputData[i] ^ inputData[i+1]
     }
     return fmt.Sprintf("%s", outData)
    }

    func main() {
            s := encode("張學友")
     fmt.Println(s)
     fmt.Println(decode(s))
    }

    希望本文所述对大家的Go语言程序设计有所帮助。

    您可能感兴趣的文章:
    • Go实现基于RSA加密算法的接口鉴权
    • 简单介绍django提供的加密算法
    • Django自带的加密算法及加密模块详解
    • Go中使用加密算法的方法
    上一篇:Go语言通过smtp发送邮件的方法
    下一篇:Go语言判断指定文件是否存在的方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Go语言实现AzDG可逆加密算法实例 语言,实现,AzDG,可逆,加密,