Skip to content

Commit

Permalink
Add two more hybrid kems
Browse files Browse the repository at this point in the history
  • Loading branch information
david415 committed Dec 7, 2024
1 parent c9dbdf7 commit e539533
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions kem/schemes/schemes.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,21 @@ var allSchemes = []kem.Scheme{
},
),

combiner.New(
"FrodoKEM-640-SHAKE-X448",
[]kem.Scheme{
adapter.FromNIKE(x448.Scheme(rand.Reader)),
frodo640shake.Scheme(),
},
),
combiner.New(
"sntrup4591761-X448",
[]kem.Scheme{
adapter.FromNIKE(x448.Scheme(rand.Reader)),
sntrup.Scheme(),
},
),

// all the Classic McEliece's from our fork of circl
combiner.New(
"mceliece348864-X25519",
Expand Down

0 comments on commit e539533

Please # to comment.