J2ME加密算法的代码!里面包括常用的算法

源代码在线查看: asymmetriccipherkeypairgenerator.java

软件大小: 4058 K
上传用户: BEIJINGHUANYING
关键词: J2ME 加密算法 代码 算法
下载地址: 免注册下载 普通下载 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 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();				}											

相关资源