• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Crypted Strings in a file

 
Ranch Hand
Posts: 76
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would like to be able to crypt certain words of a file. For example here is my file
java~c++~java~java~java~java
java~c++~java~java~java~java
java~c++~java~java~java~java
java~c++~java~java~java~java
java~c++~java~java~java~java
all I want to crypt is "c++" .... and the rest of the file stays the same
Is there a possiblilly to to this .......
 
Ranch Hand
Posts: 286
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hmm, going to need more info than this I think. Is it a text file? Is it a file you write or just read? Do you need to encrypt it or just make it non human legible? Is it always going to be the same thing (like c++ on every line)or is it something different for each line?
Need some more info/answers/explanations before we can take a shot at helping you with this.
 
Ranch Hand
Posts: 228
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Parse the String, Tokenize it on c++, encrypt the tokens(using one of the encryption algorithms, i would suggest using the LZW) and reset the tokens in their original places.
Thats it, you are done.
 
You’ll find me in my office. I’ll probably be drinking. And reading this tiny ad.
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic