Re: [U2] Help with encryption

2009-08-12 Thread m3p
- Original Message From: m3p jr...@go.com To: u2-users@listserver.u2ug.org Sent: Tuesday, 11 August, 2009 20:36:25 Subject: Re: [U2] Help with encryption Hello all, The code below: RESULT = '' STATUS = DIGEST('MD5','THIS IS A TEST',1,RESULT) PRINT 'STATUS = ' : STATUS PRINT 'RESULT

Re: [U2] Help with encryption

2009-08-11 Thread m3p
Hello all, The code below: RESULT = '' STATUS = DIGEST('MD5','THIS IS A TEST',1,RESULT) PRINT 'STATUS = ' : STATUS PRINT 'RESULT = ' : OCONV(RESULT,'MX') works fine, except... I keep getting binary data displayed, despite the OCONV(RESULT,'MX') Anyone have an idea how to turn the RESULT

Re: [U2] Help with encryption

2009-08-11 Thread Henry Unger
Subject: Re: [U2] Help with encryption Hello all, The code below: RESULT = '' STATUS = DIGEST('MD5','THIS IS A TEST',1,RESULT) PRINT 'STATUS = ' : STATUS PRINT 'RESULT = ' : OCONV(RESULT,'MX') works fine, except... I keep getting binary data displayed, despite the OCONV(RESULT,'MX') Anyone

Re: [U2] Help with encryption

2009-08-11 Thread IT-Laure Hansen
email: Click here to register/subscribe -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Henry Unger Sent: Tuesday, August 11, 2009 12:38 PM To: 'U2 Users List' Subject: Re: [U2] Help with encryption Try MX0C. Best

Re: [U2] Help with encryption

2009-08-11 Thread Dan McGrath
-boun...@listserver.u2ug.org] On Behalf Of IT-Laure Hansen Sent: Wednesday, 12 August 2009 5:44 AM To: U2 Users List Subject: Re: [U2] Help with encryption Actually, you need to parse character by character: NB.CS = LEN(HASHED.TEXT) NEW.TEXT = FOR THE.C = 1 TO NB.CS

Re: [U2] Help with encryption

2009-08-11 Thread Dan McGrath
, MX) END Not sure if that helps you or not -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of IT-Laure Hansen Sent: Wednesday, 12 August 2009 5:44 AM To: U2 Users List Subject: Re: [U2] Help with encryption Actually

Re: [U2] Help with encryption

2009-08-11 Thread andy baum
:25 Subject: Re: [U2] Help with encryption Hello all, The code below: RESULT = '' STATUS = DIGEST('MD5','THIS IS A TEST',1,RESULT) PRINT 'STATUS = ' : STATUS PRINT 'RESULT = ' : OCONV(RESULT,'MX') works fine, except... I keep getting binary data displayed, despite the OCONV(RESULT,'MX

RE: [U2] Help with encryption

2009-05-13 Thread Joshua Gallant
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of IT-Laure Hansen Sent: Tuesday, May 12, 2009 5:17 PM To: 'u2-users@listserver.u2ug.org' Subject: RE: [U2] Help with encryption Thanks. These seem to only handle symmetrical encryption, not one-way hashing (like MD5), but maybe I am missing something

RE: [U2] Help with encryption

2009-05-13 Thread IT-Laure Hansen
: Wednesday, May 13, 2009 6:14 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with encryption I know someone already mentioned it but since there are so many responses trying to do something more difficult I figured I'd throw it out there again. Won't the DIGEST() function do what

Re: [U2] Help with encryption

2009-05-13 Thread Bill Haskett
example of what you appear to be looking for. HTH, Bill __ From: Joshua Gallant jgall...@cbd.com Sent: 5/13/2009 6:14 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Help with encryption I know someone

Re: [U2] Help with encryption

2009-05-12 Thread Rex Gozar
FUNCTION MD5SUM(TEXT) * Return an MD5 hash * CVS $Revision: 1.2 $ $Date: 2009/04/14 17:13:27 $ ** EQU ALGORITHM$MD5 TO MD5 EQU DATALOC$STRING TO 1 EQU DATALOC$FILE TO 2 RESULT = ERRCODE = DIGEST(ALGORITHM$MD5, TEXT, DATALOC$STRING, RESULT) RESULT =

RE: [U2] Help with encryption

2009-05-12 Thread Dave Greer
I'm only aware of RC5 and some des. See ENCRYPT function in Basic Ref. -Original Message- From: IT-Laure Hansen [mailto:lhan...@redwoodcity.org] Sent: Tuesday, May 12, 2009 2:48 PM To: 'u2-users@listserver.u2ug.org' Subject: [U2] Help with encryption Does anyone know how to cause MD5

RE: [U2] Help with encryption

2009-05-12 Thread IT-Laure Hansen
...@listserver.u2ug.org] On Behalf Of Dave Greer Sent: Tuesday, May 12, 2009 12:43 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with encryption I'm only aware of RC5 and some des. See ENCRYPT function in Basic Ref. -Original Message- From: IT-Laure Hansen [mailto:lhan

RE: [U2] Help with encryption

2009-05-12 Thread jpb-u2ug
...@ntn-bower.com Sent: Tuesday, May 12, 2009 3:38 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Help with encryption Hello, This is to the moderator. I will be going on vacation next week for two weeks and will set my out of office message before I go. How do I stop from sending

RE: [U2] Help with encryption

2009-05-12 Thread Tom Whitmore
: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of IT-Laure Hansen Sent: Tuesday, May 12, 2009 5:17 PM To: 'u2-users@listserver.u2ug.org' Subject: RE: [U2] Help with encryption Thanks. These seem to only handle symmetrical encryption, not one-way hashing (like

RE: [U2] Help with encryption

2009-05-12 Thread Tony G
From: Tom Whitmore We use gpg to provide a level of one-way encryption. It's not the best, but it is the only option we could find. Does Universe or Unidata have a way to link custom functions into the monitor? This would facilitate in-process execution of code directly from BASIC. For

RE: [U2] Help with encryption

2009-05-12 Thread Dan McGrath
In Unidata there is a CALLC function -Original Message- From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Tony G Sent: Wednesday, 13 May 2009 10:27 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with encryption From: Tom

RE: [U2] Help with encryption

2009-05-12 Thread Henry Unger
: Tuesday, May 12, 2009 5:27 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with encryption From: Tom Whitmore We use gpg to provide a level of one-way encryption. It's not the best, but it is the only option we could find. Does Universe or Unidata have a way to link custom