update dependencies

also make sure the module that enables /dev/null path of the sh
interpreter is enabled
This commit is contained in:
Andrey Nering
2017-10-15 17:41:15 -02:00
parent 2fc32414f5
commit 0513a21e25
36 changed files with 894 additions and 245 deletions

View File

@@ -99,6 +99,7 @@ var genericMap = map[string]interface{}{
"dateInZone": dateInZone,
"dateModify": dateModify,
"ago": dateAgo,
"toDate": toDate,
// Strings
"abbrev": abbrev,
@@ -251,8 +252,11 @@ var genericMap = map[string]interface{}{
"has": func(needle interface{}, haystack []interface{}) bool { return inList(haystack, needle) },
// Crypto:
"genPrivateKey": generatePrivateKey,
"derivePassword": derivePassword,
"genPrivateKey": generatePrivateKey,
"derivePassword": derivePassword,
"genCA": generateCertificateAuthority,
"genSelfSignedCert": generateSelfSignedCertificate,
"genSignedCert": generateSignedCertificate,
// UUIDs:
"uuidv4": uuidv4,