func (c *localClient) announcementPkt() Announce { return Announce{ ID: c.myID, Addresses: c.addrList.AllAddresses(), InstanceID: rand.Int63(), } }
// addFiles adds files with random Sequence to the Sorter. func addFiles(n int, s IndexSorter) { for i := 0; i < n; i++ { rnd := rand.Int63() f := protocol.FileInfo{ Name: fmt.Sprintf("file-%d", rnd), Size: rand.Int63(), Permissions: uint32(rand.Intn(0777)), ModifiedS: rand.Int63(), ModifiedNs: int32(rand.Int63()), Sequence: rnd, Version: protocol.Vector{Counters: []protocol.Counter{{ID: 42, Value: uint64(rand.Int63())}}}, Blocks: []protocol.BlockInfo{{ Size: int32(rand.Intn(128 << 10)), Hash: []byte(rand.String(32)), }}, } s.Append(f) } }
// NewCertificate generates and returns a new TLS certificate. If tlsRSABits // is greater than zero we generate an RSA certificate with the specified // number of bits. Otherwise we create a 384 bit ECDSA certificate. func NewCertificate(certFile, keyFile, tlsDefaultCommonName string, tlsRSABits int) (tls.Certificate, error) { var priv interface{} var err error if tlsRSABits > 0 { priv, err = rsa.GenerateKey(rand.Reader, tlsRSABits) } else { priv, err = ecdsa.GenerateKey(elliptic.P384(), rand.Reader) } if err != nil { return tls.Certificate{}, fmt.Errorf("generate key: %s", err) } notBefore := time.Now() notAfter := time.Date(2049, 12, 31, 23, 59, 59, 0, time.UTC) template := x509.Certificate{ SerialNumber: new(big.Int).SetInt64(rand.Int63()), Subject: pkix.Name{ CommonName: tlsDefaultCommonName, }, NotBefore: notBefore, NotAfter: notAfter, KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature, ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth, x509.ExtKeyUsageClientAuth}, BasicConstraintsValid: true, } derBytes, err := x509.CreateCertificate(rand.Reader, &template, &template, publicKey(priv), priv) if err != nil { return tls.Certificate{}, fmt.Errorf("create cert: %s", err) } certOut, err := os.Create(certFile) if err != nil { return tls.Certificate{}, fmt.Errorf("save cert: %s", err) } err = pem.Encode(certOut, &pem.Block{Type: "CERTIFICATE", Bytes: derBytes}) if err != nil { return tls.Certificate{}, fmt.Errorf("save cert: %s", err) } err = certOut.Close() if err != nil { return tls.Certificate{}, fmt.Errorf("save cert: %s", err) } keyOut, err := os.OpenFile(keyFile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600) if err != nil { return tls.Certificate{}, fmt.Errorf("save key: %s", err) } block, err := pemBlockForKey(priv) if err != nil { return tls.Certificate{}, fmt.Errorf("save key: %s", err) } err = pem.Encode(keyOut, block) if err != nil { return tls.Certificate{}, fmt.Errorf("save key: %s", err) } err = keyOut.Close() if err != nil { return tls.Certificate{}, fmt.Errorf("save key: %s", err) } return tls.LoadX509KeyPair(certFile, keyFile) }