update master-with-bazel from main branch

This commit is contained in:
BoringSSL Robot
2025-02-14 17:13:56 +00:00
3 changed files with 13 additions and 13 deletions
+1
View File
@@ -4,6 +4,7 @@ go 1.24
require (
filippo.io/edwards25519 v1.1.0
filippo.io/mlkem768 v0.0.0-20241021091500-d85de16e2039
golang.org/x/crypto v0.31.0
golang.org/x/net v0.27.0
)
+2
View File
@@ -1,5 +1,7 @@
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
filippo.io/mlkem768 v0.0.0-20241021091500-d85de16e2039 h1:I/alPPIVzEkPeQKVU7Sl5gv/sQ0IC4zgqHiACrSgUW8=
filippo.io/mlkem768 v0.0.0-20241021091500-d85de16e2039/go.mod h1:IkpYfciLz5fI/S4/Z0NlhR4cpv6ubCMDnIwAe0XiojA=
golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
golang.org/x/net v0.27.0 h1:5K3Njcw06/l2y9vpGCSdcxWOYHOUk3dVNGDXN+FvAys=
+10 -13
View File
@@ -10,7 +10,6 @@ import (
"crypto/ecdsa"
"crypto/ed25519"
"crypto/elliptic"
"crypto/mlkem"
"crypto/rsa"
"crypto/x509"
"errors"
@@ -20,6 +19,7 @@ import (
"slices"
"boringssl.googlesource.com/boringssl.git/ssl/test/runner/kyber"
"filippo.io/mlkem768"
)
type keyType int
@@ -439,24 +439,26 @@ func (e *kyberKEM) decap(config *Config, ciphertext []byte) (secret []byte, err
}
// mlkem768KEM implements ML-KEM-768
//
// TODO(davidben): Switch this to crypto/mlkem from the standard library.
type mlkem768KEM struct {
decapKey *mlkem.DecapsulationKey768
decapKey *mlkem768.DecapsulationKey
}
func (e *mlkem768KEM) encapsulationKeySize() int {
return mlkem.EncapsulationKeySize768
return mlkem768.EncapsulationKeySize
}
func (e *mlkem768KEM) ciphertextSize() int {
return mlkem.CiphertextSize768
return mlkem768.CiphertextSize
}
func (m *mlkem768KEM) generate(config *Config) (publicKey []byte, err error) {
m.decapKey, err = mlkem.GenerateKey768()
m.decapKey, err = mlkem768.GenerateKey()
if err != nil {
return
}
publicKey = m.decapKey.EncapsulationKey().Bytes()
publicKey = m.decapKey.EncapsulationKey()
if config.Bugs.MLKEMEncapKeyNotReduced {
// Set the first 12 bits so that the first word is definitely
// not reduced.
@@ -467,16 +469,11 @@ func (m *mlkem768KEM) generate(config *Config) (publicKey []byte, err error) {
}
func (m *mlkem768KEM) encap(config *Config, peerKey []byte) (ciphertext []byte, secret []byte, err error) {
key, err := mlkem.NewEncapsulationKey768(peerKey)
if err != nil {
return nil, nil, err
}
secret, ciphertext = key.Encapsulate()
return
return mlkem768.Encapsulate(peerKey)
}
func (m *mlkem768KEM) decap(config *Config, ciphertext []byte) (secret []byte, err error) {
return m.decapKey.Decapsulate(ciphertext)
return mlkem768.Decapsulate(m.decapKey, ciphertext)
}
// concatKEM concatenates two kemImplementations.