8 lines
279 B
TypeScript
8 lines
279 B
TypeScript
|
import type DERObject from './DERObject.js';
|
||
|
import type ObjectIdentifier from './ObjectIdentifier.js';
|
||
|
export default class AlgorithmIdentifier implements DERObject {
|
||
|
algorithm: ObjectIdentifier;
|
||
|
constructor(algorithm: ObjectIdentifier);
|
||
|
toDER(): number[];
|
||
|
}
|