2020-02-07 17:27:45 +01:00
|
|
|
// Vikunja is a to-do list application to facilitate your life.
|
2020-01-09 18:33:22 +01:00
|
|
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
2019-05-31 09:24:59 +02:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2019-05-31 09:24:59 +02:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2019-05-31 09:24:59 +02:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-05-31 09:24:59 +02:00
|
|
|
|
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
2020-04-13 22:30:09 +02:00
|
|
|
"crypto/md5" // #nosec
|
2019-05-31 09:24:59 +02:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Md5String generates an md5 hash from a string
|
|
|
|
func Md5String(in string) string {
|
2020-04-13 22:30:09 +02:00
|
|
|
// #nosec
|
2019-05-31 09:24:59 +02:00
|
|
|
h := md5.New()
|
2020-04-13 22:30:09 +02:00
|
|
|
_, _ = io.WriteString(h, in)
|
2019-05-31 09:24:59 +02:00
|
|
|
return fmt.Sprintf("%x", h.Sum(nil))
|
|
|
|
}
|