mirror of
https://github.com/Azure/k8s-set-context.git
synced 2026-06-17 18:32:19 +08:00
8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
module.exports = (AlgorithmIdentifier, PrivateKey) => function () {
|
|
this.seq().obj(
|
|
this.key('version').int(),
|
|
this.key('algorithm').use(AlgorithmIdentifier),
|
|
this.key('privateKey').use(PrivateKey)
|
|
)
|
|
}
|