net.handle.security.HdlSecurityProvider.decrypt_DES_ECB_PKCS5(byte[], int, int, byte[])
use getCipher() instead and re-use the returned Cipher object
|
net.handle.security.provider.GenericProvider.decrypt_DES_ECB_PKCS5(byte[], int, int, byte[])
use the getEncryptCipher and getDecryptCipher methods now that
the java crypto API, and therefore the Cipher class, is standard and
included in java 1.4 and higher. Using a returned Cipher object will be
vastly more efficient than calling this method, which constructs a new
Cipher every time.
|
net.handle.security.HdlSecurityProvider.decrypt_RSA_ECB_PKCS1(byte[], int, int, RSAPrivateKey)
|
net.handle.hdllib.Util.decrypt(PrivateKey, byte[]) |
net.handle.hdllib.AbstractMessage.decryptMessage(byte[], byte[])
use SessionInfo.decryptBuffer
|
net.handle.hdllib.Encoder.decryptMessage(SessionInfo, byte[], byte[])
use SessionInfo.decryptBuffer
|
net.handle.security.HdlSecurityProvider.encrypt_DES_ECB_PKCS5(byte[], int, int, byte[])
use getCipher() instead and re-use the returned Cipher object
|
net.handle.security.provider.GenericProvider.encrypt_DES_ECB_PKCS5(byte[], int, int, byte[])
use the getEncryptCipher and getDecryptCipher methods now that
the java crypto API, and therefore the Cipher class, is standard and
included in java 1.4 and higher. Using a returned Cipher object will be
vastly more efficient than calling this method, which constructs a new
Cipher every time.
|
net.handle.security.HdlSecurityProvider.encrypt_RSA_ECB_PKCS1(byte[], int, int, RSAPublicKey)
|
net.handle.hdllib.Util.encrypt(PublicKey, byte[]) |
net.handle.hdllib.AbstractMessage.encryptMessage(byte[], byte[])
use SessionInfo.encryptBuffer
|
net.handle.security.HdlSecurityProvider.getCipher(int, byte[], int)
|
net.handle.hdllib.Util.getIDPart(byte[])
use getSuffixPart(byte[]) instead
|
net.handle.hdllib.Util.getNAHandle(byte[])
use getZeroNAHandle(byte[]) instead
|
net.handle.hdllib.Util.getNAPart(byte[])
use getPrefixPart(byte[]) instead
|
net.handle.hdllib.AbstractMessage.signMessage(PrivateKey) |