Jump to content

kennar

Members
  • Posts

    67
  • Joined

  • Last visited

Posts posted by kennar

  1.  

    Thanks. I unearthed some simple code - not mine -  that uses linear feedback shift registers for the first version but will investigate OpenSSL.  The details of all of this is pretty foreign to me so I'm content with any reasonable solution.  Those wiki pages do in fact look useful.

    Thanks again.

  2. .

    I recently wrote a very small utility in C that generates a text list but now there is requirement to have that output encrypted.  A second application would then read the list, search for a match, update, save, and repeat.  Any recommendation on a simple library with a selection of encryption methods?   The object really is to keep the list from a little more than casual eyes poking around.

    Thanks.

  3. I've just upgraded to a larger C drive and would like to move the Leadworks installation from another drive. I looked but it doesn't appear that the Steam client makes this easy. I assume I have to delete, manually or otherwise, then re-install. If not, suggestions would be appreciated.

     

    Thanks.

  4. Just my opinion...

     

    Simply, unless you have a specific need, it likely won't be of any added benefit. That said, over the long hall, a managed Linux is is likely better behaved - no inexplicable slow down after a year or two of usage. Also lower risks of malware is probably still a positive.

     

    I have a Linux VM currently running on my system because it was easier to compile (zero hassle) a particular piece of analysis software. The same was the case in the past but these days I maintain several GCC variants as well as the MS compilers.

     

    Then again, having a Linux VM or two won't hurt, either, and could be a fun exploration.

  5. You might be surprised by performance. Though my Linux VM is not challenged, only used for analyses I suspect performance is excellent on an i3770K machine. I remember seeing an impressive Youtube video with multiple VMs running.

     

    A nice benefit is being able to copy files between the host & client OSes.

     

    Installation is a breeze. If I recall correctly - install VMWare Player, initialize a VM at 10 or 20GB (it will make suggestion), then point the player to the ISO for installation, wait.

  6. If I'm not mistaken you'll have to seed the random number generator with something like the following.

     

      unsigned int
    randomize (void)
    {
       time_t timeval = time (NULL);
       unsigned char *ptr = (unsigned char *) &timeval;
       unsigned seed = 0;
       size_t i;
       for (i = 0; i < sizeof timeval; i++)
        seed = seed * (UCHAR_MAX + 2U) + ptr[i];
       srand (seed);
       return seed;
    }
    

  7. AlbaLYnx is not so active forum and enought developped and you lut pay 35$ for commercial use.

     

    Neosis GUI is lot more advanced (Vector based, editor, timeline animation,3D GUI ,optimized etc ...)

     

     

    I'll likely stick with something that is operational. For now I'm switching to Albalynx for Allegro5 and if it's connected to Leadwerks 3, great. I'm not sure I need all the bells & whistles.

     

    BTW, did you just criticize one package costing $35 for commercial use followed by a plug for a more costly option?

  8. The author of Albalynx (http://albalynx.com/) recently connected his GUI to Allegro5, at my request. Final version yet to be uploaded. Anyway, connection is through a relatively small header file. I'm sure the same can be done for Leadwerks 3.

     

    I seem to recall that GWEN required some fiddling to compile, though that may have changed since I last looked.

×
×
  • Create New...