kay kay
A single letter should be converted with the Asc(letter)-function into a
number. The number has to go through a equation and end up in a pretty long
number - about 200 numbers.
I am going to use this as a certification for a single user. The username
and the incrypted string is parsed into a txt-file like
-----------------start
John Doe
[huuuuuge string]
-----------------stop
This file has to be used when trying to connect to a server. You would have
to upload this file and the server will check if the string is equal to the
username (through the equation) - no arms no cookies (no valid txt-file - no
access)
The huge string is created by a simple function where every single letter is
parsed throug a equation which returns about 200 to 300 numbers pr. letter.
Every time a letter returns a integer value (200 to 300 numbers) they will
be pasted to the end of the function like if the letter 'k' returns the
number 8 and the letter 'r' returns 9 then 9 will be pasted beside 8 as
89...
A single name on 5 letters will therefor end up in a huge string, about 1500
numbers
The problem is the equation. I haven't been able to find a data-type which
can handle the result of the equation if the result is as it should be - at
200 to 300 numbers...
like
Asc(letter) -> the equation = a 200 to 300 integer-value. huge string =
integer value & integer value ....
The problem is not the string (at the moment) but the integer value because
of the datatype is too small
Does it make any sence or?
Hilsen fra Peter
(sorry about gramma etc)
One Handed Man said:
We do not want to lose something in the translation of your question into
English.
Can you please explain exactly what you are trying to do with your code? It
may help us understand and offer differing solutions to your problem.
OHM