一个基于JAVA的多torrent下载程序

源代码在线查看: asymmetriccipherkeypairgenerator.java

软件大小: 4913 K
上传用户: zxyxwd6
关键词: torrent JAVA 下载程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				package org.bouncycastle.crypto;
				
				/**
				 * interface that a public/private key pair generator should conform to.
				 */
				public interface AsymmetricCipherKeyPairGenerator
				{
				    /**
				     * intialise the key pair generator.
				     *
				     * @param the parameters the key pair is to be initialised with.
				     */
				    public void init(KeyGenerationParameters param);
				
				    /**
				     * return an AsymmetricCipherKeyPair containing the generated keys.
				     *
				     * @return an AsymmetricCipherKeyPair containing the generated keys.
				     */
				    public AsymmetricCipherKeyPair generateKeyPair();
				}
				
							

相关资源