Goalng用的私有脱敏工具
Go to file
李寻欢 e3a80a6bee 🐛 fix a bug. 2023-09-12 14:59:51 +08:00
handle first commit 2022-08-26 10:35:14 +08:00
.gitignore first commit 2022-08-26 10:35:14 +08:00
LICENSE 添加许可证 2022-10-25 16:30:22 +08:00
core.go 🐛 fix a bug. 2023-09-12 14:59:51 +08:00
go.mod first commit 2022-08-26 10:35:14 +08:00
readme.md 📝 update readme.md 2022-08-31 09:14:04 +08:00
rule.go 🎨 代码完善 2022-08-26 10:50:38 +08:00
run_test.go 🎨 代码完善 2022-08-26 10:50:38 +08:00

readme.md

脱敏 Desensitization

作用 Effect

利用反射处理结构体,处理带sen标签的字段(规则: 规则名称,占位符,如:phone,*),将其脱敏。支持自定义处理函数

Use reflection to process the structure, process the fields with the sen tag (rule: rule name, placeholder, such as: phone,*), and desensitize it. Support custom handlers

定义结构体示例 Example

package main

import (
    "github.com/lixh00/sensitive"
)


type User struct {
    Name string `json:"name"`
    Age int `json:"age"`
    Phone string `json:"phone" sen:"phone,*"`
    Email string `json:"email" sen:"email,*"`
}

func main() {
    data :=  User{
        Name: "lixh",
        Age: 18,
        Phone: "13888888888",
        Email: "lixh@gmail.com",
    }

    // 添加自定义处理函数
    // Add custom handler
    sensitive.AddHandler("email", func(src, p string) string {
        // 将@符号后面的替换为*
        // Replace the after @ sign with *
        idx := strings.Index(src, "@")
        dst := src[:idx+1] + strings.Repeat(p, utf8.RuneCountInString(src)-idx-1)
        
        return dst
    })
    
    if err := sensitive.Desensitize(data); err != nil {
        fmt.Println(err)
    }
    bs, _ := json.Marshal(response)
    log.Printf("after processing data: %v", string(bs))
}