Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding an ASN.1 module for CMP and following up on my proposed change… #5

Merged
merged 4 commits into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Automatically generated CODEOWNERS
# Regenerate with `make update-codeowners`
draft-ietf-lamps-attestation-freshness.md hannes.tschofenig@siemens.com [email protected]
draft-ietf-lamps-attestation-freshness.md hannes.tschofenig@gmx.net [email protected]
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ repository constitutes Contributions to the IETF Standards Process
You agree to comply with all applicable IETF policies and procedures, including,
BCP 78, 79, the TLP, and the TLP rules regarding code components (e.g. being
subject to a Simplified BSD License) in Contributions.


## Working Group Information

Discussion of this work occurs on the [Limited Additional Mechanisms for PKIX and SMIME
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# License

See the
[guidelines for contributions](https://github.com/hannestschofenig/lamps-attestation-freshness/blob/main/CONTRIBUTING.md).
[guidelines for contributions](https://github.com/lamps-wg/lamps-attestation-freshness/blob/main/CONTRIBUTING.md).
10 changes: 7 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ include $(LIBDIR)/main.mk
$(LIBDIR)/main.mk:
ifneq (,$(shell grep "path *= *$(LIBDIR)" .gitmodules 2>/dev/null))
git submodule sync
git submodule update $(CLONE_ARGS) --init
git submodule update --init
else
git clone -q --depth 10 $(CLONE_ARGS) \
-b main https://github.com/martinthomson/i-d-template $(LIBDIR)
ifneq (,$(wildcard $(ID_TEMPLATE_HOME)))
ln -s "$(ID_TEMPLATE_HOME)" $(LIBDIR)
else
git clone -q --depth 10 -b main \
https://github.com/martinthomson/i-d-template $(LIBDIR)
endif
endif
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

This is the working area for the IETF [LAMPS Working Group](https://datatracker.ietf.org/wg/lamps/documents/) Internet-Draft, "Nonce-based Freshness for Remote Attestation in Certificate Signing Requests (CSRs) for the Certification Management Protocol (CMP) and for Enrollment over Secure Transport (EST)".

* [Editor's Copy](https://hannestschofenig.github.io/lamps-attestation-freshness/#go.draft-ietf-lamps-attestation-freshness.html)
* [Editor's Copy](https://lamps-wg.github.io/lamps-attestation-freshness/#go.draft-ietf-lamps-attestation-freshness.html)
* [Datatracker Page](https://datatracker.ietf.org/doc/draft-ietf-lamps-attestation-freshness)
* [Working Group Draft](https://datatracker.ietf.org/doc/html/draft-ietf-lamps-attestation-freshness)
* [Compare Editor's Copy to Working Group Draft](https://hannestschofenig.github.io/lamps-attestation-freshness/#go.draft-ietf-lamps-attestation-freshness.diff)
* [Compare Editor's Copy to Working Group Draft](https://lamps-wg.github.io/lamps-attestation-freshness/#go.draft-ietf-lamps-attestation-freshness.diff)


## Contributing

See the
[guidelines for contributions](https://github.com/hannestschofenig/lamps-attestation-freshness/blob/main/CONTRIBUTING.md).
[guidelines for contributions](https://github.com/lamps-wg/lamps-attestation-freshness/blob/main/CONTRIBUTING.md).

Contributions can be made by creating pull requests.
The GitHub interface supports creating pull requests using the Edit (✏) button.
Expand Down
Loading