DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: dbms_obfuscation , in the forms

  1. #1
    Join Date
    Mar 2001
    Posts
    27

    Unhappy dbms_obfuscation , in the forms

    Hi,

    I have created two functions named encrypt_word(password,keyvalue), decrypt_word(password,keyvalue) in the backend. It is working fine till i use it in the backend. for ex

    select encrypt_word('abc','abcdefghijklmno') ecrypted,
    decrypt_word(encrypt_word('abc','abcdefghijklmno'),'abcdefghijklmno') decrypted
    from dual;

    the result is :

    ECRYPTED DECRYPTED
    ----------- -----------
    >?U5`| abc

    It is fine.

    But when i call this function in the forms , it is not giving the same value. The decrypted value is not the same which i pass. It is giving someother encrypted value like. The value which i pass to the encrypt_word function and the result from the decrypt_word function are not the same. where i go wrong, no idea. Pls help asap.

    thanks in advance.

    muks



  2. #2
    Join Date
    Jul 2002
    Location
    Lake Worth, FL
    Posts
    1,492

    Cool RAW?

    The encrypted string must be a RAW variable, check it out.
    "The person who says it cannot be done should not interrupt the person doing it." --Chinese Proverb

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width