Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
package main | |
/** | |
* @website http://albulescu.ro | |
* @author Cosmin Albulescu <cosmin@albulescu.ro> | |
*/ | |
import ( | |
"bytes" | |
"fmt" |
package main | |
//https://play.golang.org/p/_iu24fTdt57 | |
import ( | |
"fmt" | |
"regexp" | |
) | |
func main() { | |
str := `an..19` //https://en.wikipedia.org/wiki/ISO_8583#Examples_3 |
package main | |
import ( | |
"fmt" | |
"regexp" | |
) | |
func main() { | |
errStr := `rpc error: code = AlreadyExists desc = multiple write errors: [{write errors: [{E11000 duplicate key error ` + | |
`collection: mai_webmin_inventory_service.groups index: unique_name dup key: { name: "aa1234" }}]}, {<nil>}]` |