CryptoUtils
Overview
CryptoUtils is a class in Aspose.3D FOSS for Java.
Utility class for cryptographic operations.
This class provides 4 methods for working with CryptoUtils objects in Java programs.
Available methods include: CryptoUtils, desDecrypt, desEncrypt, sha1.
All public members are accessible to any Java application after installing the Aspose.3D FOSS for Java package.
Methods
| Signature | Description |
|---|---|
CryptoUtils() | Creates a new instance of CryptoUtils. |
sha1(str: String) → byte[] | Not implemented in the FOSS edition — throws at runtime. Computes the SHA1 hash of the specified string. |
desDecrypt(data: byte[], key: byte[], iv: byte[]) → byte[] | Not implemented in the FOSS edition — throws at runtime. Decrypts data using DES algorithm. |
desEncrypt(data: byte[], key: byte[], iv: byte[]) → byte[] | Not implemented in the FOSS edition — throws at runtime. Encrypts data using DES algorithm. |