Ignore:
Timestamp:
12/17/09 10:56:50 (14 years ago)
Author:
amuller
Message:

Ticket #597 - Melhoria do FM, Implementação do arquivamento

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/filemanager/js/common_functions.js

    r1846 r1865  
    7979        } 
    8080} 
    81  
     81function crypt(data1,data2){ 
     82        ret = ""; 
     83        for (var i=0;i < data1.length; i++) 
     84        { 
     85                ret += String.fromCharCode(data1.charCodeAt(i) ^ data2.charCodeAt(i)); 
     86        } 
     87        return ret; 
     88} 
    8289/* 
    8390 * base64.js - Base64 encoding and decoding functions 
Note: See TracChangeset for help on using the changeset viewer.