7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
module.exports = AlgorithmIdentifier => function () {
|
|
this.seq().obj(
|
|
this.key('algorithm').use(AlgorithmIdentifier),
|
|
this.key('publicKey').bitstr()
|
|
)
|
|
}
|