mirror of
https://github.com/Azure/k8s-set-context.git
synced 2026-06-21 13:59:28 +08:00
52d71d28bd
Co-authored-by: Oliver King <oking3@uncc.edu>
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
const oids = require('./oids')
|
|
|
|
module.exports = function () {
|
|
this.seq().obj(
|
|
this.key('algorithm').objid(oids),
|
|
this.key('parameters').optional().choice({ namedCurve: this.objid(oids), null: this.null_() })
|
|
)
|
|
}
|