The challenge and the result

  • Post author:
  • Post category:Bashrand

So, I was at a CLUG meeting last night, and one of the speakers had a whole bunch of bash scripts for XDM theming. Anyway, he was using a perl script to generate the random selection of the theme elements, and me and my big mouth offered that it could be done in bash itself. So here we are... Here's my post to the CLUG mailing list the next day: From mikal@stillhq.com Fri Mar 29 10:26:04 2002 Date: Fri, 29 Mar 2002 10:14:17 +1100 (EST) From: Michael Still To: Linux user group Subject: Nemo's bash challenge for the day Well, I said it could be done... The brief: Generate a random number, and then return that element from a list of elements, in bash The code: (Assuming that the arguements on the command line are the possible return options, and that the random number generator is running as a separate script) LOBOUND=0 HIBOUND=$# shift $(( $LOBOUND + ($HIBOUND * $RANDOM) / (32767 + 1) )) echo $1 See the attachments for some exploratory scripts I wrote while coming up with this truncated sh. There are 54 lines of comments / white spaces, to the 4 or so lines of actual…

Continue ReadingThe challenge and the result

DES examples

  • Post author:
  • Post category:Des

This page contains some DES example code I wrote in reaction to a crypto tutorial I attended a while ago. I finally got around to putting the code online... The basic point of the code is it shows you how to use the DES calls within openssl. It also shows how the electronic code book for of DES is a bad choice for vaguely predictable data such as images. A visual demonstration of this is these two images. The one on the right is an encrypted version of the one on the left... The vertical flip of the image is because of the way libtiff reads colour images, and to be honest isn't worth fixing for this example.    

Continue ReadingDES examples

Example of DES decryption code

  • Post author:
  • Post category:Des

/****************************************************************************** desex.c, an example of how to use the openssl DES implementation... Data is input on stdin, and the enrypted information is output to stdout. Prompts appear on stderr... This is an example of the Electronic Code Book mode, which is predictable for known input, and is not recommended. Copyright (c) Michael Still 2001 Released under the terms of the GNU GPL ******************************************************************************/ #include #include int main(int argc, char *argv[]){ des_cblock key, input, output; des_key_schedule sched; int c, i; fprintf(stderr, "Setting up the DES library...\n"); des_string_to_key("Mary had a little lamb, it's fleece as white as snow. Everywhere that Mary went, the lamb would surely go...", &key); fprintf(stderr, "Schedualling the key...\n"); switch(des_set_key_checked(&key, sched)){ case -1: fprintf(stderr, "Bad parity\n"); _exit(42); break; case -2: fprintf(stderr, "Key is weak\n"); _exit(42); break; } fprintf(stderr, "Start typing and hit ctrl-d to finish...\n"); i = 0; while((c = fgetc(stdin)) != EOF){ input[i] = c; i++; if(i == 8){ des_ecb_encrypt(&input, &output, sched, DES_DECRYPT); fprintf(stdout, "%c%c%c%c%c%c%c%c", output[0], output[1], output[2], output[3], output[4], output[5], output[6], output[7]); i = 0; } } }

Continue ReadingExample of DES decryption code

Example of DES encryption code

  • Post author:
  • Post category:Des

/****************************************************************************** desex.c, an example of how to use the openssl DES implementation... Data is input on stdin, and the enrypted information is output to stdout. Prompts appear on stderr... This is an example of the Electronic Code Book mode, which is predictable for known input, and is not recommended. Copyright (c) Michael Still 2001 Released under the terms of the GNU GPL ******************************************************************************/ #include #include int main(int argc, char *argv[]){ des_cblock key, input, output; des_key_schedule sched; int c, i; fprintf(stderr, "Setting up the DES library...\n"); des_string_to_key("Mary had a little lamb, it's fleece as white as snow. Everywhere that Mary went, the lamb would surely go...", &key); fprintf(stderr, "Schedualling the key...\n"); switch(des_set_key_checked(&key, sched)){ case -1: fprintf(stderr, "Bad parity\n"); _exit(42); break; case -2: fprintf(stderr, "Key is weak\n"); _exit(42); break; } fprintf(stderr, "Start typing and hit ctrl-d to finish...\n"); i = 0; while((c = fgetc(stdin)) != EOF){ input[i] = c; i++; if(i == 8){ des_ecb_encrypt(&input, &output, sched, DES_ENCRYPT); fprintf(stdout, "%c%c%c%c%c%c%c%c", output[0], output[1], output[2], output[3], output[4], output[5], output[6], output[7]); i = 0; } } }

Continue ReadingExample of DES encryption code

Initial public release

  • Post author:
  • Post category:Pngtools

In line with the maxim "release early, release often", here is the initial public viewing of my work on pngtools. At the moment, the only command that is implemented is pnginfo, which is pretty much there (apart from the command line options, which are rarely used). I would welcome comments on the code, which can be sent to mikal@stillhq.com. The code is (c) Michael Still 2001, and is released under the GNU GPL version 2. Source A historical note from November 2020: this code is quite old, but still actively used. I have therefore converted the old subversion repository to git and it is hosted at https://github.com/mikalstill/pngtools. I will monitor there for issues and patches and try my best to remember what I was thinking 20 years ago...

Continue ReadingInitial public release

End of content

No more pages to load