Skip to content

Commit

Permalink
add version as submitted at IETF118
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-wire committed Feb 26, 2024
1 parent d2b32e3 commit 04947c8
Show file tree
Hide file tree
Showing 3 changed files with 1,611 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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

fix-insecure-links:
sed -i'.bak' -e 's/http:/https:/g' draft-ietf-mls-protocol.html

extract-tls:
cat draft-ietf-mls-protocol.md | python3 extract-tls.py > draft-ietf-mls-protocol.tls
Loading

0 comments on commit 04947c8

Please sign in to comment.