Alohaaaaaa - dette er et hemmeligt sted
jquery.rc4.js
jquery-1.2.4b.js
Simple Example
Key:

Text: Encrypted Data (hex):




Code

function encrypt(){
	$('#cipher').val(
		$.rc4EncryptStr(	$('#text').val(),	$('#key').val()	)
	);
}
function decrypt(){
	$('#text').val(
		$.rc4DecryptStr(	$('#cipher').val(),	$('#key').val()	)
	);
}
Encypting/decrypting text/values

Value in a TEXTAREA

This text is encryptedThis text is decrypted

Code

$(document).ready(function(){
	$('.testrc4').rc4({"key":"Testing"});
	$('.testrc4de').rc4({"key":"Testing","method":"decrypt"});
});

Text in a DIV

This text is encryptedThis text is decrypted
Tony is testing a DIV
a3c26b6141981b0fdd42fe076f63a5d1748b899de49c2ad3c7b26bb46394d88fea7ef1a05be1b7f0ddda5fefd15ce3229a7b72c3bbc95488492923

Code

$(document).ready(function(){
	$('.testrc4').rc4({"key":"Testing"});
	$('.testrc4de').rc4({"key":"Testing","method":"decrypt"});
	//look familiar?
});