mirror of
https://github.com/yaklang/yaklang-chrome-extension.git
synced 2026-09-26 13:11:53 +08:00
Enhance architecture documentation and update project dependencies. Introduce new features for browser recording, page callables, and transform capabilities. Improve build scripts and permissions for better functionality.
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
import type { PageCryptoAdapter } from './contract';
|
||||
import { cryptoJsAdapter } from './cryptojs';
|
||||
import { jsEncryptAdapter } from './jsencrypt';
|
||||
import { webCryptoAdapter } from './webcrypto';
|
||||
import { smCryptoAdapter } from './sm-crypto';
|
||||
import { nodeForgeAdapter } from './node-forge';
|
||||
import { jsrsasignAdapter } from './jsrsasign';
|
||||
import { joseAdapter } from './jose';
|
||||
|
||||
export const PAGE_CRYPTO_ADAPTERS: PageCryptoAdapter[] = [
|
||||
webCryptoAdapter,
|
||||
cryptoJsAdapter,
|
||||
jsEncryptAdapter,
|
||||
smCryptoAdapter,
|
||||
nodeForgeAdapter,
|
||||
jsrsasignAdapter,
|
||||
joseAdapter,
|
||||
];
|
||||
|
||||
export type {
|
||||
CallableOperationKind,
|
||||
CryptoAdapterInvocationPlan,
|
||||
CryptoAdapterManifest,
|
||||
CryptoAdapterOperation,
|
||||
CryptoAdapterScope,
|
||||
CryptoAdapterToolkit,
|
||||
PageCryptoAdapter,
|
||||
} from './contract';
|
||||
|
||||
export { createCryptoAdapterRuntime } from './registry';
|
||||
export type { CryptoAdapterRuntime, CryptoAdapterRuntimeHost } from './registry';
|
||||
export { CRYPTO_ADAPTER_MANIFESTS, cryptoAdapterLabel } from './catalog';
|
||||
Reference in New Issue
Block a user