这是一个基于java编写的torrent的P2P源码

源代码在线查看: dernull.java

软件大小: 6561 K
上传用户: ashdfg
关键词: torrent java P2P 编写
下载地址: 免注册下载 普通下载 VIP

相关代码

				package org.bouncycastle.asn1;
				
				import java.io.IOException;
				
				/**
				 * A NULL object.
				 */
				public class DERNull
				    extends ASN1Null
				{
				    byte[]  zeroBytes = new byte[0];
				
				    public DERNull()
				    {
				    }
				
				    void encode(
				        DEROutputStream  out)
				        throws IOException
				    {
				        out.writeEncoded(NULL, zeroBytes);
				    }
				    
					public boolean equals(
						Object o)
					{
				        if ((o == null) || !(o instanceof DERNull))
				        {
				            return false;
				        }
				        
						return true;
					}
				}
							

相关资源