Skip to content

Commit 750ca5e

Browse files
chris-woodarmfazh
authored andcommitted
Add benchmarks for all OPRF suites
1 parent 9de48e3 commit 750ca5e

File tree

2 files changed

+33
-24
lines changed

2 files changed

+33
-24
lines changed

oprf/oprf.go

+8-5
Original file line numberDiff line numberDiff line change
@@ -86,18 +86,19 @@ type Suite interface {
8686
ID() int
8787
Group() group.Group
8888
Hash() crypto.Hash
89+
Name() string
8990
cannotBeImplementedExternally()
9091
}
9192

9293
var (
93-
// SuiteRistretto255 represents the OPRF with Ristretto255 and SHA-512.
94-
SuiteRistretto255 Suite = params{id: 1, group: group.Ristretto255, hash: crypto.SHA512}
94+
// SuiteRistretto255 represents the OPRF with Ristretto255 and SHA-512
95+
SuiteRistretto255 Suite = params{id: 1, group: group.Ristretto255, hash: crypto.SHA512, name: "OPRF(ristretto255, SHA-512)"}
9596
// SuiteP256 represents the OPRF with P-256 and SHA-256.
96-
SuiteP256 Suite = params{id: 3, group: group.P256, hash: crypto.SHA256}
97+
SuiteP256 Suite = params{id: 3, group: group.P256, hash: crypto.SHA256, name: "OPRF(P-256, SHA-256)"}
9798
// SuiteP384 represents the OPRF with P-384 and SHA-384.
98-
SuiteP384 Suite = params{id: 4, group: group.P384, hash: crypto.SHA384}
99+
SuiteP384 Suite = params{id: 4, group: group.P384, hash: crypto.SHA384, name: "OPRF(P-384, SHA-384)"}
99100
// SuiteP521 represents the OPRF with P-521 and SHA-512.
100-
SuiteP521 Suite = params{id: 5, group: group.P521, hash: crypto.SHA512}
101+
SuiteP521 Suite = params{id: 5, group: group.P521, hash: crypto.SHA512, name: "OPRF(P-521, SHA-512)"}
101102
)
102103

103104
func GetSuite(id int) (Suite, error) {
@@ -177,6 +178,7 @@ type params struct {
177178
m Mode
178179
group group.Group
179180
hash crypto.Hash
181+
name string
180182
}
181183

182184
func (p params) cannotBeImplementedExternally() {}
@@ -185,6 +187,7 @@ func (p params) String() string { return fmt.Sprintf("Suite%v", p.group) }
185187
func (p params) ID() int { return int(p.id) }
186188
func (p params) Group() group.Group { return p.group }
187189
func (p params) Hash() crypto.Hash { return p.hash }
190+
func (p params) Name() string { return p.name }
188191

189192
func (p params) getDST(name string) []byte {
190193
return append(append(append([]byte{},

oprf/oprf_test.go

+25-19
Original file line numberDiff line numberDiff line change
@@ -276,28 +276,34 @@ func Example_oprf() {
276276
}
277277

278278
func BenchmarkAPI(b *testing.B) {
279-
suite := SuiteP256
280-
key, err := GenerateKey(suite, rand.Reader)
281-
test.CheckNoErr(b, err, "failed key generation")
279+
for _, suite := range []Suite{
280+
SuiteRistretto255,
281+
SuiteP256,
282+
SuiteP384,
283+
SuiteP521,
284+
} {
285+
key, err := GenerateKey(suite, rand.Reader)
286+
test.CheckNoErr(b, err, "failed key generation")
282287

283-
b.Run("OPRF", func(b *testing.B) {
284-
s := NewServer(suite, key)
285-
c := NewClient(suite)
286-
benchAPI(b, s, c)
287-
})
288+
b.Run("OPRF/"+suite.Name(), func(b *testing.B) {
289+
s := NewServer(suite, key)
290+
c := NewClient(suite)
291+
benchAPI(b, s, c)
292+
})
288293

289-
b.Run("VOPRF", func(b *testing.B) {
290-
s := NewVerifiableServer(suite, key)
291-
c := NewVerifiableClient(suite, s.PublicKey())
292-
benchAPI(b, s, c)
293-
})
294+
b.Run("VOPRF/"+suite.Name(), func(b *testing.B) {
295+
s := NewVerifiableServer(suite, key)
296+
c := NewVerifiableClient(suite, s.PublicKey())
297+
benchAPI(b, s, c)
298+
})
294299

295-
b.Run("POPRF", func(b *testing.B) {
296-
info := []byte("shared info")
297-
s := &s1{NewPartialObliviousServer(suite, key), info}
298-
c := &c1{NewPartialObliviousClient(suite, s.PublicKey()), info}
299-
benchAPI(b, s, c)
300-
})
300+
b.Run("POPRF/"+suite.Name(), func(b *testing.B) {
301+
info := []byte("shared info")
302+
s := &s1{NewPartialObliviousServer(suite, key), info}
303+
c := &c1{NewPartialObliviousClient(suite, s.PublicKey()), info}
304+
benchAPI(b, s, c)
305+
})
306+
}
301307
}
302308

303309
func benchAPI(b *testing.B, server commonServer, client commonClient) {

0 commit comments

Comments
 (0)