-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 3.49 KB
/
Copy pathindex.html
File metadata and controls
64 lines (64 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CryptoToolkit - AES, RSA, HMAC and Encoding Calculators</title>
<meta name="description" content="Free browser cryptography calculators for AES-GCM, RSA keys, HMAC-SHA256, legacy HMAC-SHA1, SHA hashing, Base64/hex/text conversion, EC math, ciphers, and attacks." />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://ctool.mdpstudio.com.au/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="CryptoToolkit - AES, RSA, HMAC and Encoding Calculators" />
<meta property="og:description" content="Browser cryptography calculators for AES-GCM, RSA keys, HMAC-SHA256, legacy HMAC-SHA1, SHA hashing, Base64/hex/text conversion, EC math, ciphers, and attack demos." />
<meta property="og:url" content="https://ctool.mdpstudio.com.au/" />
<meta property="og:site_name" content="CryptoToolkit" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="CryptoToolkit - AES, RSA, HMAC and Encoding Calculators" />
<meta name="twitter:description" content="Browser calculators for AES-GCM, RSA keys, HMAC-SHA256, legacy HMAC-SHA1, SHA hashing, Base64/hex/text conversion, EC math, ciphers, and attacks." />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "CryptoToolkit",
"alternateName": ["CipherLab", "CryptoToolkit Cryptography Lab"],
"applicationCategory": "EducationalApplication",
"operatingSystem": "Web",
"url": "https://ctool.mdpstudio.com.au/",
"description": "CryptoToolkit is an interactive educational cryptography lab with calculators for AES-GCM, RSA key generation, HMAC-SHA256, legacy HMAC-SHA1, SHA hashing, Base64, hex, text conversion, elliptic curve math, modular arithmetic, factorization, classical ciphers, protocol walkthroughs, attack demonstrations, and challenge practice.",
"featureList": [
"AES-GCM authenticated encryption calculator",
"RSA key generator and encrypt/decrypt calculator",
"HMAC-SHA256 walkthrough",
"Legacy HMAC-SHA1 document-ID helper",
"SHA-1 and SHA-256 hashing tools",
"Base64, hex, binary, decimal, and text converters",
"Elliptic curve point addition and scalar multiplication",
"Modular inverse, exponentiation, GCD, totient, and primality calculators",
"Integer factorization with Pollard's rho and trial division",
"Caesar, Vigenere, ROT13, Atbash, and substitution cipher tools",
"Diffie-Hellman, ECDSA, Paillier, ElGamal, and Shamir workflows",
"RSA, CBC padding oracle, GCM nonce reuse, hash extension, and timing attack demos"
],
"creator": {
"@type": "Person",
"name": "Meidie Fei",
"url": "https://meidie.mdpstudio.com.au/"
},
"publisher": {
"@type": "Organization",
"name": "MDP Studio",
"url": "https://mdpstudio.com.au"
},
"isAccessibleForFree": true,
"sameAs": [
"https://mdpstudio.com.au/projects/cryptography-lab/"
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>