mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 00:55:00 +03:00
8 lines
312 B
TypeScript
8 lines
312 B
TypeScript
/**
|
||
* Проверяет наличие ОИД'а (ОИД'ов) у сертификата
|
||
*
|
||
* @param oids - ОИД'ы для проверки
|
||
* @returns флаг наличия ОИД'ов у сертификата
|
||
*/
|
||
export declare const hasExtendedKeyUsage: (oids: string | string[]) => Promise<boolean>;
|