
-----------------------------------
basiblaster
Tue Dec 17, 2019 8:57 am

need help for encrypter
-----------------------------------
I am trying to create a encrypting program. i am trying to create the letter-number script right now so that i can change the values by a set amount later.


  
                
            encryption shit      
            
    
        
            encryption key (10 NUMBERS long):
        

    
             
        
            input text (what you want to encrypt):
        
    
    
        
    
        
    
        
         function encrypt() {
            //input from HTML
            var key = document.getElementById("key").value  ;
            var input = document.getElementById("input").value  ;
            //determin how many times to run the loop
            var string = input.length   ;
            //other vars
            var index   ;
            var output  ;
                //letter to number loop
                while (string