Search:

Type: Posts; User: maryprogrammer

Search: Search took 0.01 seconds.

  1. How would I combine them into a single function?

    How would I combine them into a single function?
  2. My decrypt does not work. What am I doing wrong?

    I am trying to finish this project and my decrypt does not work.
    Key should be an array and should be updated at each character.



    #include <stdio.h>
    #include<string.h>
    #include<ctype.h>...
  3. Check if non ASCII character is inputted

    hello, I'm trying to put in my code to check if non ASCII character is a valid input if not get an error message.



    #include <stdio.h>
    #include<string.h>
    #include<stdlib.h>
    #include<ctype.h>...
  4. Replies
    3
    Views
    5,340

    Is this how an autokey cipher would work or is...

    Is this how an autokey cipher would work or is there an easier way.
  5. Replies
    3
    Views
    5,340

    Put this algorithm into code

    I am trying to put this algorithm into code for my autokey cipher program.

    If (keyIsNotExhaust) Encryption = currChar + key; else Encryption = currChar + prevChar;

    If (keyIsNotExhaust)...
  6. Replies
    11
    Views
    12,006

    If (keyIsNotExhaust) Encryption = currChar + key;...

    If (keyIsNotExhaust) Encryption = currChar + key; else Encryption = currChar + prevChar;

    If (keyIsNotExhaust) decryption = currChar - key; else decryption = currChar - decryption;

    Return...
  7. Replies
    11
    Views
    12,006

    ok, what about my logic of how autokeycipher...

    ok, what about my logic of how autokeycipher works. Is this how it would happen to encrypt and decrypt?
  8. Replies
    11
    Views
    12,006

    It is an array so I’m trying to input that all...

    It is an array so I’m trying to input that all though out my code
  9. Replies
    11
    Views
    12,006

    Help Me with an autocipher key in C!!!

    Hello,
    Can somebody please help me with this code. I've gotten somewhat an idea of what it can be but it is still giving me errors. I also don't understand the algorithm of an autokey cipher so...
Results 1 to 9 of 9