Преглед на файлове

tris: implement Committer

tls13
Filippo Valsorda преди 8 години
committed by Peter Wu
родител
ревизия
ea17b0c225
променени са 1 файла, в които са добавени 11 реда и са изтрити 0 реда
  1. +11
    -0
      handshake_server.go

+ 11
- 0
handshake_server.go Целия файл

@@ -16,6 +16,10 @@ import (
"io"
)

type Committer interface {
Commit() error
}

// serverHandshakeState contains details of a server handshake in progress.
// It's discarded once the handshake has completed.
type serverHandshakeState struct {
@@ -268,6 +272,13 @@ Curves:
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 {
switch priv.Public().(type) {
case *ecdsa.PublicKey:


Зареждане…
Отказ
Запис