it-tools/src/tools/rsa-ecdsa-signing/index.ts
2024-05-18 23:11:55 +02:00

13 lines
473 B
TypeScript

import { Lock } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'RSA/DSA/ECDSA Signer and Verifier',
path: '/rsa-ecdsa-signing',
description: 'Sign data and verify signature using RSA/DSA/ECDSA Keys',
keywords: ['rsa', 'dsa', 'ecdsa', 'ed25519', 'encryption', 'cypher', 'encipher', 'crypt', 'decrypt'],
component: () => import('./rsa-ecdsa-signing.vue'),
icon: Lock,
createdAt: new Date('2024-05-01'),
});