Changeset 1886


Ignore:
Timestamp:
12/22/09 14:25:38 (14 years ago)
Author:
amuller
Message:

Ticket #597 - Melhoria do FM. melhorias na interface base64

File:
1 edited

Legend:

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

    r1880 r1886  
    7878(function( ) 
    7979{ 
     80        // TODO: use DES, RSA, PGP, or something strong 
    8081        var sec_key = null; 
    8182        function encode( data ) 
     
    129130 
    130131function base64_decode(str) { 
    131         var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; 
     132        var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789/='; 
    132133        var invalid = { 
    133134        strlen: (str.length % 4 != 0), 
Note: See TracChangeset for help on using the changeset viewer.