📄 asymmetriccipherkeypairgenerator.java
字号:
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();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -