one Login
We have a super secure "ace" server that uses "tokens" that update a
users password every 60 secs, For every user they pick a "pin" that
always precedes the token value ex: userid = userid, password = pin &
current_token_value.I want to know if I can Pick the password apart like
I can strings in VB. The reason I want to do this is because i want have
One main portal for everything like mail, and a helpdesk etc...the
mailserver does not use "token" security and I want make the users
password for the mail server = there pin, then i could allow the user
one login.
Does this make sense? Any sample code or ideas would be appreciated
Thanks donnie
[704 byte] By [
Donnie] at [2007-11-9 15:35:31]

# 1 Re: one Login
Hi all,
I got the similar problem to be solved. Can anyone provide any idea on how
to do it?
Thanks,
Ling
Donnie <dpritche@jjaco.wpo.state.ks.us> wrote:
>We have a super secure "ace" server that uses "tokens" that update a
>users password every 60 secs, For every user they pick a "pin" that
>always precedes the token value ex: userid = userid, password = pin &
>current_token_value.I want to know if I can Pick the password apart like
>
>I can strings in VB. The reason I want to do this is because i want have
>
>One main portal for everything like mail, and a helpdesk etc...the
>mailserver does not use "token" security and I want make the users
>password for the mail server = there pin, then i could allow the user
>one login.
>Does this make sense? Any sample code or ideas would be appreciated
>
>Thanks donnie
>
>
>
# 2 Re: one Login
If you know the length of the tokens, you can use a Left() function to get
the pin out of the string.
For Example:
strPswd = Left(Tkn_and_Pswd, Len(Tkn_and_Pswd) - TknSize)
James
"Ling Tang" <ling.tl.tang@cwhktsecurenet.com> wrote:
>
>Hi all,
>
>I got the similar problem to be solved. Can anyone provide any idea on how
>to do it?
>
>Thanks,
>
>Ling
>
>Donnie <dpritche@jjaco.wpo.state.ks.us> wrote:
>>We have a super secure "ace" server that uses "tokens" that update a
>>users password every 60 secs, For every user they pick a "pin" that
>>always precedes the token value ex: userid = userid, password = pin &
>>current_token_value.I want to know if I can Pick the password apart like
>>
>>I can strings in VB. The reason I want to do this is because i want have
>>
>>One main portal for everything like mail, and a helpdesk etc...the
>>mailserver does not use "token" security and I want make the users
>>password for the mail server = there pin, then i could allow the user
>>one login.
>>Does this make sense? Any sample code or ideas would be appreciated
>>
>>Thanks donnie
>>
>>
>>
>