📄 derdump.java
字号:
package org.bouncycastle.asn1.util;import org.bouncycastle.asn1.DEREncodable;import org.bouncycastle.asn1.DERObject;/** * @deprecated use ASN1Dump. */public class DERDump extends ASN1Dump{ /** * dump out a DER object as a formatted string * * @param obj the DERObject to be dumped out. */ public static String dumpAsString( DERObject obj) { return _dumpAsString("", false, obj); } /** * dump out a DER object as a formatted string * * @param obj the DERObject to be dumped out. */ public static String dumpAsString( DEREncodable obj) { return _dumpAsString("", false, obj.getDERObject()); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -