《移动Agent技术》一书的所有章节源代码。

源代码在线查看: asymmetriccipherkeypairgenerator.java

软件大小: 28403 K
上传用户: ABC258369000
关键词: Agent 移动 源代码
下载地址: 免注册下载 普通下载 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();				}											

相关资源