chore: fixing comments

- uncomment an occurrence of `boring`
- edited comment for `decryptTicket`/`DecryptTicketWith` to reflect changes made.
This commit is contained in:
Gaukas Wang 2022-10-28 00:40:30 -06:00
parent 7edeeded0a
commit e9b8ee1232
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D
2 changed files with 5 additions and 5 deletions

View file

@ -242,9 +242,9 @@ func selectSignatureScheme(vers uint16, c *Certificate, peerAlgs []SignatureSche
// Pick signature scheme in the peer's preference order, as our // Pick signature scheme in the peer's preference order, as our
// preference order is not configurable. // preference order is not configurable.
for _, preferredAlg := range peerAlgs { for _, preferredAlg := range peerAlgs {
// if needFIPS() && !isSupportedSignatureAlgorithm(preferredAlg, fipsSupportedSignatureAlgorithms) { if needFIPS() && !isSupportedSignatureAlgorithm(preferredAlg, fipsSupportedSignatureAlgorithms) {
// continue continue
// } }
if isSupportedSignatureAlgorithm(preferredAlg, supportedAlgs) { if isSupportedSignatureAlgorithm(preferredAlg, supportedAlgs) {
return preferredAlg, nil return preferredAlg, nil
} }

View file

@ -144,7 +144,7 @@ func (c *Conn) encryptTicket(state []byte) ([]byte, error) {
return encrypted, nil return encrypted, nil
} }
// [uTLS] changed to use exported DecryptTicketWith func below // [uTLS] added exported DecryptTicketWith func below
func (c *Conn) decryptTicket(encrypted []byte) (plaintext []byte, usedOldKey bool) { func (c *Conn) decryptTicket(encrypted []byte) (plaintext []byte, usedOldKey bool) {
if len(encrypted) < ticketKeyNameLen+aes.BlockSize+sha256.Size { if len(encrypted) < ticketKeyNameLen+aes.BlockSize+sha256.Size {
return nil, false return nil, false
@ -191,7 +191,7 @@ func (c *Conn) decryptTicket(encrypted []byte) (plaintext []byte, usedOldKey boo
// usedOldKey will be true if the key used for decryption is // usedOldKey will be true if the key used for decryption is
// not the first in the []TicketKey slice // not the first in the []TicketKey slice
// //
// [uTLS] changed to be made public and take a TicketKeys instead of use a Conn receiver // [uTLS] changed to be made public and take a TicketKeys and use a fake conn receiver
func DecryptTicketWith(encrypted []byte, tks TicketKeys) (plaintext []byte, usedOldKey bool) { func DecryptTicketWith(encrypted []byte, tks TicketKeys) (plaintext []byte, usedOldKey bool) {
// create fake conn // create fake conn
c := &Conn{ c := &Conn{