Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

E50 Telemetry Authentication And Encryption

ASecurity

Assess the protection applied to a telemetry stream under ECSS-E-ST-50C clause 5.5.7: map each stream's declared sensitivity tier onto the authentication and confidentiality services it owes, refuse confidentiality offered without integrity, compute the per-frame overhead of tag, initialisation vector and block padding, check the remaining useful throughput still carries the source demand, size the key against the years it must stand, and find the frame counter that exhausts inside one key pe...

2 stars
0 votes
0 copies
0 views
Added 9/27/2026
ai-agentspythongosecurity

Works with

claude code

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add ashfordeOU/aero-agent-skills --skill e50-telemetry-authentication-and-encryption --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E50 Telemetry Authentication And Encryption?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for E50 Telemetry Authentication And Encryption
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e50-telemetry-authentication-and-encryption/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e50-telemetry-authentication-and-encryption)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: e50-telemetry-authentication-and-encryption
description: "Assess the protection applied to a telemetry stream under ECSS-E-ST-50C clause 5.5.7: map each stream's declared sensitivity tier onto the authentication and confidentiality services it owes, refuse confidentiality offered without integrity, compute the per-frame overhead of tag, initialisation vector and block padding, check the remaining useful throughput still carries the source demand, size the key against the years it must stand, and find the frame counter that exhausts inside one key period. Use when specifying telemetry security services, reviewing a key and counter plan, or costing protection overhead. Trigger: ecss, e-st-50-communications-scope, telemetry-authentication-and-encryption, telemetry-sensitivity-tier-mapping, frame-authentication-tag-overhead, telemetry-key-strength-lifetime, frame-counter-exhaustion, protected-telemetry-throughput."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: ecss
    reference-only: true
gated: false
domain: space-systems
pack: space-systems
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
clauses:
  - standard: ECSS-E-ST-50C Rev.2
    clause: 5.5.7
    items: [a]
    relation: implements
metadata:
  domain: space-systems
  subdomain: ecss
  tags: [ecss, e-st-50-communications-scope, e50-telemetry-authentication-and-encryption, telemetry-protection-services, telemetry-sensitivity-tier-mapping, frame-authentication-tag-overhead, telemetry-key-strength-lifetime, frame-counter-exhaustion, protected-telemetry-throughput]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Communications — Telemetry Authentication and Encryption (space-systems/ecss/e50-telemetry-authentication-and-encryption)

Use when the task is the telemetry protection provision of ECSS-E-ST-50C
clause 5.5.7 — deciding which telemetry streams are authenticated, which
are encrypted, and showing that the resulting protection is both strong
enough for the mission and affordable in the downlink budget.

## Domain quick reference

- Authentication and confidentiality are separate services answering
  separate questions. Authentication says the frame came from this
  spacecraft and was not altered; confidentiality says a third party
  cannot read it. A mission can need either, both, or neither per
  stream, and the sensitivity tier of the data is what decides.
- Confidentiality without integrity is a defect, not a cheaper option.
  An encrypted frame that carries no tag can be altered in flight and
  will decrypt to something; the receiver has no way to tell. Wherever
  encryption is applied, the integrity service goes with it.
- Overhead is per frame, and it is not only the tag. The tag, the
  initialisation vector or counter that makes each frame unique, and the
  padding a block cipher needs to reach a whole block all consume
  payload space, so the useful throughput of a protected downlink is
  measurably below its raw rate.
- Key strength is judged against the time the data must stay protected,
  not against the mission duration. Data that must stay protected for
  twenty years needs a key that is credible in twenty years, which is
  usually a longer key than the one that protects a housekeeping stream
  for the length of a pass.
- The uniqueness counter is a hard limit. A counter of n bits admits
  two-to-the-n frames under one key; once it wraps, two frames share an
  initialisation vector, and for most modes that is a break. The key
  rotation period has to come before the counter wraps, which is
  arithmetic on the frame rate, not a policy preference.
- Grouping streams by tier is how this stays proportionate. Protecting
  everything at the highest tier costs throughput on every stream;
  leaving the tiers unmapped means the decision is made per stream by
  whoever implements it.

## Workflow

1. Validate each stream: a name, a sensitivity tier the mapping knows,
   a positive frame payload in bits and a positive frame rate.
2. Map the tier onto the services owed — authentication, confidentiality
   or both — setting aside whatever the mission already covers by some
   other means it can point to, since these services are owed for what
   is left over. Compare that remainder with the services the design
   actually applies; report a shortfall and report encryption applied
   without integrity.
3. Compute the per-frame overhead: the authentication tag when
   authentication applies, the initialisation vector or counter when
   confidentiality applies, and the padding needed to fill the last
   cipher block.
4. Compute the protected useful throughput as the frame rate times the
   payload that survives the overhead, and compare with the demand the
   stream has to carry.
5. Size the key: compare the declared key length with the minimum for
   the number of years the data must stay protected.
6. Compute the frames sent under one key as the frame rate times the key
   rotation period, and compare with the span of the uniqueness counter.
7. Report per stream the services owed and applied, the overhead, the
   useful throughput, and every finding.

## Obligations

| Item | Step |
|---|---|
| ECSS-E-ST-50C Rev.2 5.5.7a | 2 |

## Pitfalls

- Applying encryption to a stream and leaving it unauthenticated. It
  reads as the stronger choice and is the weaker one: the receiver
  cannot detect a modified frame at all.
- Costing the overhead as the tag alone. The initialisation vector and
  the block padding together are often larger than the tag, and on a
  small frame they can cost a tenth of the payload.
- Sizing the key from the mission length. The protection period is how
  long the content stays sensitive, which routinely outlives the
  spacecraft.
- Choosing the key rotation period by operational convenience. The
  counter span divided by the frame rate is an upper bound on it, and a
  high-rate stream can exhaust a short counter in hours.
- Leaving the tier mapping implicit. Without a stated tier per stream,
  the protection decision migrates into the implementation and cannot be
  reviewed as a whole.

## Behavior contract (gate 3)

The stream validation, tier-to-service mapping, integrity pairing rule,
per-frame overhead computation, useful-throughput comparison, key
sizing and counter-exhaustion arithmetic are exercised by the gate 3
contract test:
scripts/test_e50_telemetry_authentication_and_encryption.py against
scripts/e50_telemetry_authentication_and_encryption_logic.py (stdlib
unittest, offline). Run:
python3 scripts/test_e50_telemetry_authentication_and_encryption.py

## Compliance

- ECSS standards are freely downloadable (ESA); cite the source and
  paraphrase per standards-map.yaml.
- compliance: STANDARDS-REF, gated: false.

Attribution

ashfordeOUashfordeOU
View sourceMore from ashfordeOU →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

694821 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →