【求助】用Online ASN.1 Compiler 编译OCSP ASN.1出了好多错!

问题描述

出错信息如下:FATAL:Cannotfindexternalmodule"PKIX1Explicit88"mentionedfor"GeneralName"atline25.Obtainthismoduleandinstructcompilertoprocessittoo.inOCSP.asnFATAL:Unknowntype"GeneralName"referencedby"requestorName"atline25inOCSP.asnFATAL:Cannotfindexternalmodule"PKIX1Explicit88"mentionedfor"Extensions"atline27.Obtainthismoduleandinstructcompilertoprocessittoo.inOCSP.asnFATAL:Unknowntype"Extensions"referencedby"requestExtensions"atline27inOCSP.asnFATAL:Cannotfindexternalmodule"PKIX1Explicit88"mentionedfor"GeneralName"atline24.Obtainthismoduleandinstructcompilertoprocessittoo.inOCSP.asnFATAL:Cannotfindexternalmodule"AuthenticationFramework"mentionedfor"AlgorithmIdentifier"atline30.Obtainthismoduleandinstructcompilertoprocessittoo.inOCSP.asnFATAL:Unknowntype"AlgorithmIdentifier"referencedby"signatureAlgorithm"atline30inOCSP.asn······

时间: 2024-11-10 07:51:19

【求助】用Online ASN.1 Compiler 编译OCSP ASN.1出了好多错!的相关文章

Angular的Bootstrap(引导)和Compiler(编译)机制_AngularJS

在上节简单介绍了Angular js框架,在这节将继续Angular的Bootstrap(引导)和Compiler(编译)机制. 一:Bootstrap:Angular的初始化 1:Angular推荐的自动化初始如下: <!doctype html> <html xmlns:ng="http://angularjs.org" ng-app> <body> ... <script src="angular.js"> &l

编译Linux2.6.32.2内核报错

问题描述 编译Linux2.6.32.2内核报错 joker@Ghost:~/local/linux-2.6.32$ make CHK include/linux/version.h CHK include/linux/utsrelease.h SYMLINK include/asm -> include/asm-x86 CALL scripts/checksyscalls.sh CHK include/linux/compile.h AS arch/x86/kernel/entry_64.o

build xml-ant编译,提示build.xml老是报错

问题描述 ant编译,提示build.xml老是报错 解决方案 执行 ANT -V查看详细信息 解决方案二: 执行 ANT -V查看详细信息 解决方案三: 我这个 for 语句有问题么,3Q

eclipse安装反编译工具jad打开.class文件报错

问题描述 eclipse安装反编译工具jad打开.class文件报错 /*jadclipse*/ /* DECOMPILATION REPORT Decompiled from: D:mavenrepositoryorgspringframeworkspring-webmvc3.2.4.RELEASEspring-webmvc-3.2.4.RELEASE.jar Total time: 0 ms Jad reported messages/errors: Exit status: 0 Caugh

osx下编译hadoop2.5.2的时候报错Ant BuildException

问题描述 osx下编译hadoop2.5.2的时候报错Ant BuildException [ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:run (site) on project hadoop-common: An Ant BuildException has occured: stylesheet /Users/narayan/Downloads/hadoop-2.5.2-src

c#-求助,请问,E写的DLL被C#调用就报错是为什么?

问题描述 求助,请问,E写的DLL被C#调用就报错是为什么? 求助,请问,E写的DLL被C#调用就报错是为什么? 传参弹窗的那种DLL 解决方案 贴出你的函数原型,看看C#这里声明的对不对. 解决方案二:

调试-求助,matlab与c++混编,matlab无错,混编报错

问题描述 求助,matlab与c++混编,matlab无错,混编报错 各位大神,本人最近在做老师给的一个混编的项目.matlab的库已经生成好了,其他好几个程序的混编工作也结束了,但是这个程序就是搞不定.matlab里已经调试很好了,一切正常,但是生成的库在c++中运行就报错 错误如图,这是我的c代码: CImage imgin; CImage imgout; imgin.Load(_T("test.bmp")); int pit = imgin.GetPitch(); int h =

cocos2dx-vs2012编译cocos2d-x无法弹出窗口

问题描述 vs2012编译cocos2d-x无法弹出窗口 用vs2012编译完cocos2d-x-3.0的cpp-test,编译通过,输出窗口显示成功几个,失败0个,跳过0个,但是没有弹出官方的demo窗口:编译cpp-empty-test以及自建的helloworld项目也是如此,都没有弹出生成的窗口!!求高手解答,感激不尽,高分求解!!

如何定义一个类 编译时,使得第一行报错,第二行正确

问题描述 如何定义一个类Aint main(){ A a; //第一行 A *b=new A(); //第二行}如何定义一个类 编译时,使得第一行报错,第二行正确 问题补充:enet_java 写道 解决方案 [quote java]#include "stdio.h"class test{public:static test* getinstance(){return(new test());}int puthello(){puts("hello world");