Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for Ticket (0.32 sec)

  1. src/crypto/tls/common.go

    const (
    	// ticketKeyLifetime is how long a ticket key remains valid and can be used to
    	// resume a client connection.
    	ticketKeyLifetime = 7 * 24 * time.Hour // 7 days
    
    	// ticketKeyRotation is how often the server should rotate the session ticket key
    	// that is used for new tickets.
    	ticketKeyRotation = 24 * time.Hour
    )
    
    // ticketKey is the internal representation of a session ticket key.
    type ticketKey struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    		}
    		return k
    	}
    
    	testResumeState("Handshake", false)
    	ticket := getTicket()
    	testResumeState("Resume", true)
    	if bytes.Equal(ticket, getTicket()) {
    		t.Fatal("ticket didn't change after resumption")
    	}
    
    	// An old session ticket is replaced with a ticket encrypted with a fresh key.
    	ticket = getTicket()
    	serverConfig.Time = func() time.Time { return time.Now().Add(24*time.Hour + time.Minute) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages.go

    			return false
    		}
    	}
    	return readUint16LengthPrefixed(&s, &m.signature) && s.Empty()
    }
    
    type newSessionTicketMsg struct {
    	ticket []byte
    }
    
    func (m *newSessionTicketMsg) marshal() ([]byte, error) {
    	// See RFC 5077, Section 3.3.
    	ticketLen := len(m.ticket)
    	length := 2 + 4 + ticketLen
    	x := make([]byte, 4+length)
    	x[0] = typeNewSessionTicket
    	x[1] = uint8(length >> 16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    	// or sending NewSessionTicket messages.
    	resumptionSecret []byte
    	echAccepted      bool
    
    	// ticketKeys is the set of active session ticket keys for this
    	// connection. The first one is used to encrypt new tickets and
    	// all are tried to decrypt tickets.
    	ticketKeys []ticketKey
    
    	// clientFinishedIsFirst is true if the client sent the first Finished
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    			continue // these are unexported fields that are handled separately
    		default:
    			t.Errorf("all fields must be accounted for, but saw unknown field %q", fn)
    		}
    	}
    	// Set the unexported fields related to session ticket keys, which are copied with Clone().
    	c1.autoSessionTicketKeys = []ticketKey{c1.ticketKeyFromBytes(c1.SessionTicketKey)}
    	c1.sessionTicketKeys = []ticketKey{c1.ticketKeyFromBytes(c1.SessionTicketKey)}
    
    	c2 := c1.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. src/main/webapp/css/font-awesome.min.css

    meter-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-t...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

     *  Fix: Don't crash if the system default authenticator is null.
     *  Fix: Don't crash generating elliptic curve certificates on Android.
     *  Fix: Don't crash doing platform detection on RoboVM.
     *  Fix: Don't leak socket connections when web socket upgrades fail.
    
    
    ## Version 3.11.0
    
    _2018-07-12_
    
     *  **OkHttp's new okhttp-tls submodule tames HTTPS and TLS.**
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/font-awesome.min.css

    meter-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-t...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  9. cmd/bucket-handlers.go

    			return
    		}
    	}
    
    	for _, bucket := range bucketsInConflict.ToSlice() {
    		dnsLogIf(ctx, fmt.Errorf("Unable to add bucket DNS entry for bucket %s, an entry exists for the same bucket by a different tenant. This local bucket will be ignored. Bucket names are globally unique in federated deployments. Use path style requests on following addresses '%v' to access this bucket", bucket, globalDomainIPs.ToSlice()))
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. cmd/bucket-replication-utils_gen.go

    			z.ReplicatedCount, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ReplicatedCount")
    				return
    			}
    		case "Bucket":
    			z.Bucket, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Bucket")
    				return
    			}
    		case "Object":
    			z.Object, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Object")
    				return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
Back to top