软件大小: | 4002 K | ||
上传用户: | xujinliner | ||
关键词: | bouncycastle JAVA | ||
下载地址: | 免注册下载 普通下载 |
相关代码 |
|
package org.bouncycastle.asn1; import java.io.IOException; /** * A BER NULL object. */ public class BERNull extends DERNull { public BERNull() { } void encode( DEROutputStream out) throws IOException { if (out instanceof ASN1OutputStream || out instanceof BEROutputStream) { out.write(NULL); } else { super.encode(out); } } }
相关资源 |
|