doudou521125 2017-03-07 12:04
浏览 207
已采纳

将C#SHA1代码转换为Golang

I need to convert some old C# code to Golang and I stuck somewhere. C# code looks like this `

 byte[] bytes = Encoding.Unicode.GetBytes(password);
 byte[] src = Encoding.Unicode.GetBytes(salt);
 byte[] dst = new byte[src.Length + bytes.Length];
 Buffer.BlockCopy(src, 0, dst, 0, src.Length);
 Buffer.BlockCopy(bytes, 0, dst, src.Length, bytes.Length);
 HashAlgorithm algorithm = HashAlgorithm.Create("SHA1");
 byte[] inArray = algorithm.ComputeHash(dst);
 return Convert.ToBase64String(inArray);

so I examined the code line by line and as I understand he used convert the salt and password byte array then he copied these arrays to 'dst' array. Then he used SHA1 algorithm and convert this array to base64string.

My Golang code looks like this but It doesn't create the same string which stores on database.

s := "fish123"
salt := "227EA7ABD26E40608A6EDEB209058D93A632D1D1A52246D0A27F6E447B16AEBF"

h1 := sha1.New()
h1.Write([]byte(salt))
h1.Write([]byte(s))

hashedPassword := base64.StdEncoding.EncodeToString(h1.Sum(nil))

Can anyone find my fault? Thanks

  • 写回答

1条回答 默认 最新

  • doucha7329 2017-03-07 12:55
    关注

    The problem is that the C# code is using the Encoding.Unicode. In Go it should be:

    package main
    
    import (
        "crypto/sha1"
        "encoding/base64"
        "encoding/binary"
        "fmt"
        "unicode/utf16"
    )
    
    func main() {
        s := "fish123"
        salt := "227EA7ABD26E40608A6EDEB209058D93A632D1D1A52246D0A27F6E447B16AEBF"
    
        h1 := sha1.New()
        h1.Write(convertUTF16ToLittleEndianBytes(salt))
        h1.Write(convertUTF16ToLittleEndianBytes(s))
    
        b64 := base64.StdEncoding.EncodeToString(h1.Sum(nil))
        fmt.Println(b64)
    }
    
    func convertUTF16ToLittleEndianBytes(s string) []byte {
        u := utf16.Encode([]rune(s))
        b := make([]byte, 2*len(u))
        for index, value := range u {
            binary.LittleEndian.PutUint16(b[index*2:], value)
        }
        return b
    }
    

    The convertUTF16ToLittleEndianBytes was taken from another response on SO.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 Matlab打开默认名称带有/的光谱数据
  • ¥50 easyExcel模板 动态单元格合并列
  • ¥15 res.rows如何取值使用
  • ¥15 在odoo17开发环境中,怎么实现库存管理系统,或独立模块设计与AGV小车对接?开发方面应如何设计和开发?请详细解释MES或WMS在与AGV小车对接时需完成的设计和开发
  • ¥15 CSP算法实现EEG特征提取,哪一步错了?
  • ¥15 游戏盾如何溯源服务器真实ip?需要30个字。后面的字是凑数的
  • ¥15 vue3前端取消收藏的不会引用collectId
  • ¥15 delphi7 HMAC_SHA256方式加密
  • ¥15 关于#qt#的问题:我想实现qcustomplot完成坐标轴
  • ¥15 下列c语言代码为何输出了多余的空格