-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(Partially) Setup repository for draft-bradleylundberg-cfrg-arkg using …
- Loading branch information
Showing
5 changed files
with
70 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# See http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*.{md,xml,org}] | ||
charset = utf-8 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Automatically generated CODEOWNERS | ||
# Regenerate with `make update-codeowners` | ||
draft-bradleylundberg-cfrg-arkg.md [email protected] [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
*.html | ||
*.redxml | ||
*.swp | ||
*.txt | ||
*.upload | ||
*~ | ||
.tags | ||
/*-[0-9][0-9].xml | ||
/.gems/ | ||
/.refcache | ||
/.targets.mk | ||
/.venv/ | ||
/.vscode/ | ||
/lib | ||
/node_modules/ | ||
/versioned/ | ||
Gemfile.lock | ||
archive.json | ||
draft-bradleylundberg-cfrg-arkg.xml | ||
package-lock.json | ||
report.xml | ||
!requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
LIBDIR := lib | ||
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 | ||
else | ||
git clone -q --depth 10 $(CLONE_ARGS) \ | ||
-b main https://github.com/martinthomson/i-d-template $(LIBDIR) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# The Asynchronous Remote Key Generation (ARKG) algorithm | ||
|
||
This is the working area for the individual Internet-Draft, "The Asynchronous Remote Key Generation (ARKG) algorithm". | ||
|
||
* [Editor's Copy](https://Yubico.github.io/arkg-rfc/#go.draft-bradleylundberg-cfrg-arkg.html) | ||
* [Datatracker Page](https://datatracker.ietf.org/doc/draft-bradleylundberg-cfrg-arkg) | ||
* [Individual Draft](https://datatracker.ietf.org/doc/html/draft-bradleylundberg-cfrg-arkg) | ||
* [Compare Editor's Copy to Individual Draft](https://Yubico.github.io/arkg-rfc/#go.draft-bradleylundberg-cfrg-arkg.diff) | ||
|
||
|
||
## Contributing | ||
|
||
TBD | ||
|
||
|
||
## Command Line Usage | ||
|
||
Formatted text and HTML versions of the draft can be built using `make`. | ||
|
||
```sh | ||
$ make | ||
``` | ||
|
||
Command line usage requires that you have the necessary software installed. See | ||
[the instructions](https://github.com/martinthomson/i-d-template/blob/main/doc/SETUP.md). |