Giter Club home page Giter Club logo

cifradocesar's Introduction

CIFRADO CESAR

Contenido:

  1. Diagrama de flujo cifradoCesar.
  2. Pseudocódigo.
  3. Ejecución del código en JS.
  4. Explicación del código.

1. DIAGRAMA DE FLUJO

DFcifradoCesar

2. PSEUDOCÓDIGO

    INICIO PROCESO
      var message, option, arr;

    hacer
      leer opciones  

        enCasoDe(true)

          caso(option == 1):                  
            escribir message  
            si ( longitugMessage == 0 ó tipoDeDato_message  == 'number')
              leer 'ERROR'
            sino cipher <-- message
          parar

          caso(option == 2):
            escribir message  
              si ( longitugMessage == 0 ó tipoDeDato_message  == 'number')
                leer 'ERROR'
              sino descipher <-- message
          parar

          caso(option == 3):
          parar

          default: mostrar ('No hay esa opción')

    mientras((option != 1) && (option != 2) && (option != 3));

    FIN PROCESO

    -----------------------------------------------------------------------------

    INICIO subProceso

      función cipher <--- (message)
        message = messageMayuscula

        para ( var i = 0; i < longitudMessage; i++)
          array[i] = valorUnicodeMessage
          array[i] = formulaCifradoCesar // (( arr[i] - 65 + n ) % 26 + 65)
          array[i] = devolverletraValorUnicode

      retorna mostrar message cifrado

    FIN subProceso

    ------------------------------------------------------------------------------

    INICIO subProceso

      función cipher <--- (message)
        message = messageMayuscula

        para ( var i = 0; i < longitudMessage; i++)
          array[i] = valorUnicodeMessage
          array[i] = formulaDescifradoCesar // (( arr[i] + 65 - n ) % 26 + 65)
          array[i] = devolverletraValorUnicode

      retorna mostrar message cifrado

    FIN subProceso

cifradocesar's People

Contributors

jessica2011 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.