public static final class RsaCipher.EsPkcs1v15 extends RsaCipher
An instance of this algorithm can be obtained using the Java Cryptography
Architecture (JCA), by requesting an 'RSA/1/PKCS1Padding' cipher from the
Entrust
cryptographic service provider. This can be done using the following
call:
Cipher.getInstance("RSA/1/PKCS1Padding", "Entrust");RsaCipher.EsOaep, RsaCipher.EsPkcs1v15, RsaCipher.SsaPkcs1v15| Constructor and Description |
|---|
EsPkcs1v15()
The constructor; creates a new instance of the RSA/1/PKCS1Padding
asymmetric cipher algorithm.
|
engineGetKeySize, engineGetParameters, engineSetMode, engineSetPadding, implGetOutputSize, implInit, implProcessDataengineDoFinal, engineDoFinal, engineGetBlockSize, engineGetIV, engineGetOutputSize, engineInit, engineInit, engineInit, engineUnwrap, engineUpdate, engineUpdate, engineWrap, getPrngpublic EsPkcs1v15()
Applications should never use this constructor, instead the symmetric
cipher algorithm should be requested from the appropriate JCA/JCE
cryptographic service provider as follows:
Cipher.getInstance("RSA/1/PKCS1Padding", "Entrust").