Agent skill · Security

crypto-primitives

Implementation and secure usage of cryptographic primitives including ECDSA, BLS, Schnorr signatures, key derivation, secret sharing, and constant-time operations. Provides guidance for secure cryptographic implementations in blockchain applications.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill crypto-primitives --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Allowed tools: ReadGrepWriteBashEditGlobWebFetch
Path: library/specializations/cryptography-blockchain/skills/crypto-primitives/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Cryptographic Primitives Skill Expert implementation and usage of cryptographic primitives for blockchain and security applications. ## Capabilities - **Digital Signatures**: ECDSA, BLS, Schnorr signature implementation and verification - **Key Derivation**: BIP-32/39/44 hierarchical deterministic key generation - **Threshold Cryptography**: Shamir secret sharing, threshold signatures - **Hash Functions**: Secure usage of Keccak, Poseidon, MiMC, Pedersen - **Commitments**: Pedersen commitments, hash commitments - **Secure Randomness**: CSPRNG usage, VRF integration - **Constant-Time Operations**: Side-channel resistant implementations ## Signature Schemes ### ECDSA (secp256k1) Standard Ethereum signature scheme: ```javascript import { secp256k1 } from '@noble/curves/secp256k1'; import { keccak_256 } from '@noble/hashes/sha3'; // Sign message const messageHash = keccak_256(message); const signature = secp256k1.sign(messageHash, privateKey); // Verify signature const isValid = secp256k1.verify(signature, messageHash, publicKey); // Recover public key from signature (Ethereum style) const recoveredPubKey = signature.recoverPublicKey(messageHash); ``` ### BLS Signatures (BLS12-381) A

What's inside
Steps it walks through
  1. Capabilities
  2. Signature Schemes
  3. ECDSA (secp256k1)
  4. BLS Signatures (BLS12-381)
  5. Schnorr Signatures
  6. Key Derivation
  7. BIP-32 HD Wallet
  8. BIP-39 Mnemonic
  9. Secret Sharing
  10. Shamir's Secret Sharing
  11. Feldman VSS (Verifiable Secret Sharing)
  12. Hash Functions
  13. Ethereum-Specific
  14. ZK-Friendly Hashes
Ships with 1 file
  • README.md
More from babysitter
All skills →
About this skill
What does the crypto-primitives skill do?

Implementation and secure usage of cryptographic primitives including ECDSA, BLS, Schnorr signatures, key derivation, secret sharing, and constant-time operations. Provides guidance for secure cryptographic implementations in blockchain applications.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill crypto-primitives --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going