mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Fixes session ticket / PSK not set (#302)
* Add setters for SessionState fields createdAt, UseBy, and AgeAdd * chore: remove accidental comments from code * fix: incorrect clientHelloBuildStatus after BuildHandshakeStateWithoutSession Reviewed-by: Gaukas Wang <i@gaukas.wang> * chore: add empty lines between functions Signed-off-by: Gaukas Wang <i@gaukas.wang> --------- Signed-off-by: Gaukas Wang <i@gaukas.wang> Co-authored-by: Gaukas Wang <i@gaukas.wang>
This commit is contained in:
parent
206f659ab4
commit
841ef93712
2 changed files with 28 additions and 4 deletions
30
u_public.go
30
u_public.go
|
@ -617,9 +617,6 @@ func (PSS PskIdentities) ToPrivate() []pskIdentity {
|
|||
|
||||
// ClientSessionState is public, but all its fields are private. Let's add setters, getters and constructor
|
||||
|
||||
// TODO! can we change this enought (or export SessionState),
|
||||
// such that we wouldn't need to fork crypto/tls?
|
||||
|
||||
// ClientSessionState contains the state needed by clients to resume TLS sessions.
|
||||
func MakeClientSessionState(
|
||||
SessionTicket []uint8,
|
||||
|
@ -679,36 +676,49 @@ func (css *ClientSessionState) VerifiedChains() [][]*x509.Certificate {
|
|||
func (css *ClientSessionState) SetSessionTicket(SessionTicket []uint8) {
|
||||
css.ticket = SessionTicket
|
||||
}
|
||||
|
||||
func (css *ClientSessionState) SetVers(Vers uint16) {
|
||||
if css.session == nil {
|
||||
css.session = &SessionState{}
|
||||
}
|
||||
css.session.version = Vers
|
||||
}
|
||||
|
||||
func (css *ClientSessionState) SetCipherSuite(CipherSuite uint16) {
|
||||
if css.session == nil {
|
||||
css.session = &SessionState{}
|
||||
}
|
||||
css.session.cipherSuite = CipherSuite
|
||||
}
|
||||
|
||||
func (css *ClientSessionState) SetCreatedAt(createdAt uint64) {
|
||||
if css.session == nil {
|
||||
css.session = &SessionState{}
|
||||
}
|
||||
css.session.createdAt = createdAt
|
||||
}
|
||||
|
||||
func (css *ClientSessionState) SetMasterSecret(MasterSecret []byte) {
|
||||
if css.session == nil {
|
||||
css.session = &SessionState{}
|
||||
}
|
||||
css.session.secret = MasterSecret
|
||||
}
|
||||
|
||||
func (css *ClientSessionState) SetEMS(ems bool) {
|
||||
if css.session == nil {
|
||||
css.session = &SessionState{}
|
||||
}
|
||||
css.session.extMasterSecret = ems
|
||||
}
|
||||
|
||||
func (css *ClientSessionState) SetServerCertificates(ServerCertificates []*x509.Certificate) {
|
||||
if css.session == nil {
|
||||
css.session = &SessionState{}
|
||||
}
|
||||
css.session.peerCertificates = ServerCertificates
|
||||
}
|
||||
|
||||
func (css *ClientSessionState) SetVerifiedChains(VerifiedChains [][]*x509.Certificate) {
|
||||
if css.session == nil {
|
||||
css.session = &SessionState{}
|
||||
|
@ -716,6 +726,20 @@ func (css *ClientSessionState) SetVerifiedChains(VerifiedChains [][]*x509.Certif
|
|||
css.session.verifiedChains = VerifiedChains
|
||||
}
|
||||
|
||||
func (css *ClientSessionState) SetUseBy(useBy uint64) {
|
||||
if css.session == nil {
|
||||
css.session = &SessionState{}
|
||||
}
|
||||
css.session.useBy = useBy
|
||||
}
|
||||
|
||||
func (css *ClientSessionState) SetAgeAdd(ageAdd uint32) {
|
||||
if css.session == nil {
|
||||
css.session = &SessionState{}
|
||||
}
|
||||
css.session.ageAdd = ageAdd
|
||||
}
|
||||
|
||||
// TicketKey is the internal representation of a session ticket key.
|
||||
type TicketKey struct {
|
||||
AesKey [16]byte
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue