capacitor-shamir
Version:
Provides Shamir's Secret Sharing (SSS) functionality for secure splitting and recovering secrets natively on iOS, Android, and Web.
10 lines • 360 B
JavaScript
import { registerPlugin } from '@capacitor/core';
const Shamir = registerPlugin('Shamir', {
web: () => import('./web').then((m) => new m.ShamirWeb()),
});
export * from './definitions';
export const updateShamirWebFsIndexedDbConfig = (config) => {
Shamir.updateShamirWebFsIndexedDbConfig(config);
};
export { Shamir };
//# sourceMappingURL=index.js.map