@@ -86,18 +86,19 @@ type Suite interface {
86
86
ID () int
87
87
Group () group.Group
88
88
Hash () crypto.Hash
89
+ Name () string
89
90
cannotBeImplementedExternally ()
90
91
}
91
92
92
93
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)" }
95
96
// 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)" }
97
98
// 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)" }
99
100
// 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)" }
101
102
)
102
103
103
104
func GetSuite (id int ) (Suite , error ) {
@@ -177,6 +178,7 @@ type params struct {
177
178
m Mode
178
179
group group.Group
179
180
hash crypto.Hash
181
+ name string
180
182
}
181
183
182
184
func (p params ) cannotBeImplementedExternally () {}
@@ -185,6 +187,7 @@ func (p params) String() string { return fmt.Sprintf("Suite%v", p.group) }
185
187
func (p params ) ID () int { return int (p .id ) }
186
188
func (p params ) Group () group.Group { return p .group }
187
189
func (p params ) Hash () crypto.Hash { return p .hash }
190
+ func (p params ) Name () string { return p .name }
188
191
189
192
func (p params ) getDST (name string ) []byte {
190
193
return append (append (append ([]byte {},
0 commit comments