tris: implement Committer

This commit is contained in:
Filippo Valsorda 2016-11-04 17:09:45 -07:00 committed by Peter Wu
parent 8052dc002f
commit ea17b0c225

View File

@ -16,6 +16,10 @@ import (
"io" "io"
) )
type Committer interface {
Commit() error
}
// serverHandshakeState contains details of a server handshake in progress. // serverHandshakeState contains details of a server handshake in progress.
// It's discarded once the handshake has completed. // It's discarded once the handshake has completed.
type serverHandshakeState struct { type serverHandshakeState struct {
@ -268,6 +272,13 @@ Curves:
hs.hello.scts = hs.cert.SignedCertificateTimestamps hs.hello.scts = hs.cert.SignedCertificateTimestamps
} }
if committer, ok := c.conn.(Committer); ok {
err = committer.Commit()
if err != nil {
return false, err
}
}
if priv, ok := hs.cert.PrivateKey.(crypto.Signer); ok { if priv, ok := hs.cert.PrivateKey.(crypto.Signer); ok {
switch priv.Public().(type) { switch priv.Public().(type) {
case *ecdsa.PublicKey: case *ecdsa.PublicKey: