shithub: furgit

ref: 803089a76171db1dd5b891fb6dfa1b7e7f3d50d2
dir: /receivepack/capabilities_defaults.go/

View raw version
package receivepack

import (
	"crypto/rand"
)

func defaultAgent() string {
	return "furgit"
}

func defaultSessionID() string {
	return "furgit-" + rand.Text()
}

func defaultPushCertNonce() string {
	return "furgit-" + rand.Text()
}