Password generator written in Go... and deployed here
curl -Ls "pwdgen.poln.org/?l=64&mime=json" | jq
{
"length": 64,
"password": "4wC3ZAJjw1C5X_p9AyAJDDNzu3BF8khCQlAu9mKIzNdGPVjVni_ftSEjer.3EJQS"
}
curl -Ls "pwdgen.poln.org/?l=64"
<!DOCTYPE html>
<html>
<head>
<title>PoLN | 🔑 PWDGEN</title>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 50%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
</style>
</head>
<body>
<table>
<tr>
<th>
Length
</th>
<th>
Password
</th>
</tr>
<tr>
<td><code>64</code></td>
<td><code>-3D8-7MAqq2IAciip7w2426iV18vWhgizaJ?cI?aCkDy#gnxgeAvJ7rGkveccI!I</code></td>
</tr>
</table>
</body>
</html>