asn1.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # https://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. """ASN.1 definitions.
  17. Not all ASN.1-handling code use these definitions, but when it does, they should be here.
  18. """
  19. from pyasn1.type import univ, namedtype, tag
  20. class PubKeyHeader(univ.Sequence):
  21. componentType = namedtype.NamedTypes(
  22. namedtype.NamedType('oid', univ.ObjectIdentifier()),
  23. namedtype.NamedType('parameters', univ.Null()),
  24. )
  25. class OpenSSLPubKey(univ.Sequence):
  26. componentType = namedtype.NamedTypes(
  27. namedtype.NamedType('header', PubKeyHeader()),
  28. # This little hack (the implicit tag) allows us to get a Bit String as Octet String
  29. namedtype.NamedType('key', univ.OctetString().subtype(
  30. implicitTag=tag.Tag(tagClass=0, tagFormat=0, tagId=3))),
  31. )
  32. class AsnPubKey(univ.Sequence):
  33. """ASN.1 contents of DER encoded public key:
  34. RSAPublicKey ::= SEQUENCE {
  35. modulus INTEGER, -- n
  36. publicExponent INTEGER, -- e
  37. """
  38. componentType = namedtype.NamedTypes(
  39. namedtype.NamedType('modulus', univ.Integer()),
  40. namedtype.NamedType('publicExponent', univ.Integer()),
  41. )