Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to encrypt the password in CDOSYS stored procedure? 1

Status
Not open for further replies.

35mph

Vendor
Aug 22, 2004
152
US
Our SMTP server requires authentication, and therefore, our CDOSYS stored procedure has the password hardcoded into it.

Is there a way to encrypt the password field?

How about encrypting the entire stored procedure?

Or lastly, what about restricting permissions on simply viewing the stored procedure?
 
You can encrypt the SP using:

Code:
CREATE PROC myproc
WITH ENCRYPTION
AS
...

This will stop anyone being able to see the SP code.

--James
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top