pyasn1.error.PyAsn1Error: TagSet( ) not in asn1Spec

场景是使用python的python-rsa工具加载rsa公钥时候异常

pyasn1.error.PyAsn1Error: TagSet(Tag(tagClass=0, tagFormat=32, tagId=16)) not in asn1Spec: {TagSet(Tag(tagClass=0, tagFormat=0, tagId=2)): Integer()}/{}

具体的报错信息是:

报错信息

1、一种网络的解决方案:

https://ask.helplib.com/others/post_5222242

他的方法是将加载RSA公钥的函数进行替代,从 public_key = rsa.PublicKey.load_pkcs1(ofile.read()) 替换成 public_key = rsa.PublicKey.load_pkcs1_openssl_pem(ofile.read()),如下图所示

load_pkcs1_openssl_pem( )

效果是加载字典中没有报错了,但是监控显示公钥加载失败,并没有解决问题

2、stackOverflow 上的解决方案

https://stackoverflow.com/questions/25243761/pyasn1-error-when-reading-a-pem-string

看的出来,和第一种是同种方法,甚至可能是同一个人提交的答案

但是在这里找到了文档 Python-RSA 3.3 documentation【链接是 https://stuvel.eu/files/python-rsa-doc/reference.html】,其中有加载RSA公钥的函数定义,如下所示:

load_pkcs1 文档中的函数定义

3、Others

https://github.com/bidord/pykek/issues/1

4、查找到一篇博客,提到Python和Java跨平台导致的RSA加密算法会有细微标准不同导致的加载失败

https://www.cnblogs.com/skying555/p/6293751.html


改用 Cryptor-RSA 加密

参考:

http://blog.csdn.net/nyist327/article/details/48352253

你可能感兴趣的:(pyasn1.error.PyAsn1Error: TagSet( ) not in asn1Spec)