mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-05 21:17:35 +03:00
chore: fixing comments
- uncomment an occurrence of `boring` - edited comment for `decryptTicket`/`DecryptTicketWith` to reflect changes made.
This commit is contained in:
parent
7edeeded0a
commit
e9b8ee1232
2 changed files with 5 additions and 5 deletions
6
auth.go
6
auth.go
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue