You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
361 B
21 lines
361 B
3 years ago
|
package tdesktop
|
||
|
|
||
|
import (
|
||
|
"crypto/md5" // #nosec G501
|
||
|
"encoding/hex"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func tdesktopMD5(s string) string {
|
||
|
hash := md5.Sum([]byte(s)) // #nosec G401
|
||
|
for i := range hash {
|
||
|
hash[i] = hash[i]<<4 | hash[i]>>4
|
||
|
}
|
||
|
hexed := hex.EncodeToString(hash[:])
|
||
|
return strings.ToUpper(hexed)
|
||
|
}
|
||
|
|
||
|
func fileKey(s string) string {
|
||
|
return tdesktopMD5(s)[:16]
|
||
|
}
|