SKILLS/implementing-digital-signatures-with-ed25519/SKILL.md
Ed25519 is a high-performance digital signature algorithm using the Edwards curve Curve25519. It provides 128-bit security with 64-byte signatures and 32-byte keys, offering significant advantages ove
npx skillsauth add pinkpixel-dev/skills-collection-2 implementing-digital-signatures-with-ed25519Install this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Ed25519 is a high-performance digital signature algorithm using the Edwards curve Curve25519. It provides 128-bit security with 64-byte signatures and 32-byte keys, offering significant advantages over RSA and ECDSA including deterministic signatures (no random nonce needed), resistance to side-channel attacks, and fast verification. This skill covers implementing Ed25519 for document signing, code signing, and API authentication.
| Property | Ed25519 | RSA-3072 | ECDSA P-256 | |----------|---------|----------|-------------| | Security | 128-bit | 128-bit | 128-bit | | Public key size | 32 bytes | 384 bytes | 64 bytes | | Signature size | 64 bytes | 384 bytes | 64 bytes | | Key generation | ~50 us | ~100 ms | ~1 ms | | Sign | ~70 us | ~5 ms | ~200 us | | Verify | ~200 us | ~200 us | ~500 us | | Deterministic | Yes | No (PSS) | No (unless RFC 6979) |
development
A cryptographic audit systematically reviews an application's use of cryptographic primitives, protocols, and key management to identify vulnerabilities such as weak algorithms, insecure modes, hardco
tools
Extract stored credentials from compromised endpoints using the LaZagne post-exploitation tool to recover passwords from browsers, databases, system vaults, and applications during authorized red team operations.
testing
Analyze and bypass Content Security Policy implementations to achieve cross-site scripting by exploiting misconfigurations, JSONP endpoints, unsafe directives, and policy injection techniques.
testing
Scan container images, filesystems, and Kubernetes manifests for vulnerabilities, misconfigurations, exposed secrets, and license compliance issues using Aqua Security Trivy with SBOM generation and CI/CD integration.