EncryptionUtility Classe
- java.
lang. Object - system.
fabric. EncryptionUtility
- system.
public class EncryptionUtility
Classe de utilitário para executar operações de criptografia e descriptografia.
Resumo do método
Modificador e tipo | Método e descrição |
---|---|
char [] |
decryptText(String textToDecrypt)
Descriptografou o texto criptografado. O arquivo certificate(.pem) deve estar presente na pasta /var/lib/sfcerts. |
String |
encryptText(char []textToEncrypt, String certPath)
Criptografa o texto com o arquivo de certificado fornecido. |
String |
encryptText(char []textToEncrypt, String certPath, String algorithmOid)
Criptografa o texto com o arquivo de certificado fornecido. |
String |
encryptText(String textToEncrypt, String certPath)
Criptografa o texto com o arquivo de certificado fornecido. |
String |
encryptText(String textToEncrypt, String certPath, String algorithmOid)
Criptografa o texto com o arquivo de certificado fornecido. |
Detalhes do método
decryptText
public static char [] decryptText(String textToDecrypt)
Descriptografou o texto criptografado. O arquivo certificate(.pem) deve estar presente na pasta /var/lib/sfcerts.
Parâmetros:
Retornos:
encryptText
public static String encryptText(char []textToEncrypt, String certPath)
Criptografa o texto com o arquivo de certificado fornecido.
Parâmetros:
Retornos:
encryptText
public static String encryptText(char []textToEncrypt, String certPath, String algorithmOid)
Criptografa o texto com o arquivo de certificado fornecido.
Parâmetros:
Retornos:
encryptText
public static String encryptText(String textToEncrypt, String certPath)
Criptografa o texto com o arquivo de certificado fornecido.
Parâmetros:
Retornos:
encryptText
public static String encryptText(String textToEncrypt, String certPath, String algorithmOid)
Criptografa o texto com o arquivo de certificado fornecido.
Parâmetros:
Retornos:
Aplica-se a
Azure SDK for Java