Skip to content

Commit

Permalink
feat(new tool): SSL Certificate Converter
Browse files Browse the repository at this point in the history
Fix #1245
Handle JKS, PEM, DER, P12 as input
Handle PEM and DER as output
  • Loading branch information
sharevb committed Sep 22, 2024
1 parent f5c4ab1 commit 0a5d610
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/tools/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Check failure on line 5 in src/tools/index.ts

View workflow job for this annotation

GitHub Actions / ci

Cannot find module './ssl-cert-converter' or its corresponding type declarations.

import { tool as asciiTextDrawer } from './ascii-text-drawer';

Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit 0a5d610

Please sign in to comment.