https://www.npmjs.com/package/vue3-eimzo
npm i vue3-eimzo
# or
yarn add vue3-eimzo
import VueEimzo from 'vue3-eimzo'
app.use(VueEimzo)
// you can access EIMZO client as $eimzo inside vue instance
await this.$eimzo.install()
this.certs = await this.$eimzo.listAllUserKeys()
let loadKeyResult = await this.$eimzo.loadKey(key)
let cert = await this.$eimzo.getMainCertificate(loadKeyResult.id)
let certInfo = await this.$eimzo.getCertInfo(cert)
let result = await this.$eimzo.signPkcs7(key, 'Hello world')
let token = await this.$eimzo.getTimestampToken(result.signature_hex)
yarn install
yarn serve
yarn build
yarn test:unit
yarn lint