feat(new tool): SSL Certificate Converter

Fix #1245
Handle JKS, PEM, DER, P12 as input
Handle PEM and DER as output
This commit is contained in:
sharevb 2024-09-22 12:18:51 +02:00 committed by ShareVB
parent f5c4ab19bc
commit e62ca2295c
9 changed files with 1045 additions and 9 deletions

View file

@ -2,6 +2,7 @@ import { tool as base64FileConverter } from './base64-file-converter';
import { tool as base64StringConverter } from './base64-string-converter';
import { tool as basicAuthGenerator } from './basic-auth-generator';
import { tool as emailNormalizer } from './email-normalizer';
import { tool as sslCertConverter } from './ssl-cert-converter';
import { tool as asciiTextDrawer } from './ascii-text-drawer';
@ -164,7 +165,15 @@ export const toolsByCategory: ToolCategory[] = [
},
{
name: 'Network',
components: [ipv4SubnetCalculator, ipv4AddressConverter, ipv4RangeExpander, macAddressLookup, macAddressGenerator, ipv6UlaGenerator],
components: [
ipv4SubnetCalculator,
ipv4AddressConverter,
ipv4RangeExpander,
macAddressLookup,
macAddressGenerator,
ipv6UlaGenerator,
sslCertConverter,
],
},
{
name: 'Math',