Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

java encrypt string

public static String decrypt(String strEncrypted,String strKey) throws Exception{
	String strData="";
	
	try {
		SecretKeySpec skeyspec=new SecretKeySpec(strKey.getBytes(),"Blowfish");
		Cipher cipher=Cipher.getInstance("Blowfish");
		cipher.init(Cipher.DECRYPT_MODE, skeyspec);
		byte[] decrypted=cipher.doFinal(strEncrypted.getBytes());
		strData=new String(decrypted);
		
	} catch (Exception e) {
		e.printStackTrace();
		throw new Exception(e);
	}
	return strData;
}
Comment

java encrypt string

public static String encrypt(String strClearText,String strKey) throws Exception{
	String strData="";
	
	try {
		SecretKeySpec skeyspec=new SecretKeySpec(strKey.getBytes(),"Blowfish");
		Cipher cipher=Cipher.getInstance("Blowfish");
		cipher.init(Cipher.ENCRYPT_MODE, skeyspec);
		byte[] encrypted=cipher.doFinal(strClearText.getBytes());
		strData=new String(encrypted);
		
	} catch (Exception e) {
		e.printStackTrace();
		throw new Exception(e);
	}
	return strData;
}
Comment

PREVIOUS NEXT
Code Example
Java :: java 8 list stream delete by name 
Java :: change button text onclick javca 
Java :: how to read file from assets folder in android 
Java :: HttpServer example java 
Java :: copy to clipboard android studio 
Java :: qr code generator in java 
Java :: putting scanner into an array 
Java :: hashmap iteration 
Java :: java get file from url 
Java :: wait random time java 
Java :: how to convert int into int array of digits in java 
Java :: close a popup selenium python 
Java :: java print hello world 
Java :: java iso 8601 format 
Java :: view binding in recyclerview adapter android java 
Java :: get average of all the array items android 
Java :: java summe array 
Java :: java convert to roman numerals 
Java :: java read directory 
Java :: java replace character in string 
Java :: how to get input form combobox java 
Java :: core java tutorial 
Java :: how to find a word in string in java 
Java :: print an array java 
Java :: How to perform quick sort, in Java? 
Java :: java get random 
Java :: how to check the end of a string java 
Java :: Get the last day of a month in Java 
Java :: array sort java 
Java :: react The href attribute is required for an anchor to be keyboard 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =