Replaced math/rand (deprecated) with crypto/rand
This commit is contained in:
parent
14e947435b
commit
7cc0152d3e
4
main.go
4
main.go
@ -1,8 +1,8 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"crypto/rand"
|
||||
"io"
|
||||
"math/rand"
|
||||
"net/http"
|
||||
"os"
|
||||
"strconv"
|
||||
@ -138,7 +138,6 @@ func UploadHandler(w http.ResponseWriter, r *http.Request) {
|
||||
}
|
||||
file.Seek(0, 0)
|
||||
|
||||
|
||||
// Check if expiry time is present and length is too long
|
||||
if r.PostFormValue("expiry") != "" {
|
||||
ttl, err = strconv.ParseInt(r.PostFormValue("expiry"), 10, 64)
|
||||
@ -177,7 +176,6 @@ func UploadHandler(w http.ResponseWriter, r *http.Request) {
|
||||
fileNameLength = conf.FileLen
|
||||
}
|
||||
|
||||
|
||||
// generate + check name
|
||||
for {
|
||||
id := NameGen(fileNameLength)
|
||||
|
Loading…
Reference in New Issue
Block a user