From 7da04e58044fbd2e0f43b441dad1a37b98286cf9 Mon Sep 17 00:00:00 2001 From: Russ Housley Date: Sun, 6 Oct 2019 04:20:25 -0400 Subject: Add support for RFC 8209 (#74) * Add support for RFC 8209 --- pyasn1_modules/rfc8209.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pyasn1_modules/rfc8209.py (limited to 'pyasn1_modules') diff --git a/pyasn1_modules/rfc8209.py b/pyasn1_modules/rfc8209.py new file mode 100644 index 0000000..7d70f51 --- /dev/null +++ b/pyasn1_modules/rfc8209.py @@ -0,0 +1,20 @@ +# +# This file is part of pyasn1-modules software. +# +# Created by Russ Housley. +# +# Copyright (c) 2019, Vigil Security, LLC +# License: http://snmplabs.com/pyasn1/license.html +# +# BGPsec Router PKI Profile +# +# ASN.1 source from: +# https://www.rfc-editor.org/rfc/rfc8209.txt +# + +from pyasn1.type import univ + + +id_kp = univ.ObjectIdentifier('1.3.6.1.5.5.7.3') + +id_kp_bgpsec_router = id_kp + (30, ) -- cgit v1.2.3