English 中文(简体)
How do I use AES 256-bit encryption when integrating with SalesForce?
原标题:

My question relates to aes 256 bit encryption in browser post. I want to integrate an intranet application with salesforce and want the data transfer between them should be aes 256 bit encrypted so that the client gets utmost security. Can anyone give me ideas as to how it can be implemented? the integration b/w them will also be through SSO. i want the data transfer between the salesforce and application shud be browser post with aes 256 bit encryption.

问题回答

After creating your encrypted stream, convert it into a Base64 string and it is ready for transmission over the web/intranet. If you create a class of sorts to do this for you on all requests, it will make life a lot easier for you.

However, make sure that the server side security is first put in place, such as SSL and other web server security measures. No matter how secure the code, if the server isn t secure, you re in trouble.

It seems as if Salesforce uses Java to plug into (don t quote me on it though :P), so here is a link for more or less what implementation needs to take place:

http://www.velocityreviews.com/forums/t645364-java-string-encryption-decryption.html





相关问题
Decoding http response with certificate

I m new to php and I need to authenticate to a SSO server. The SSO server is a .Net one, using a SSL certificate. When I go back from the SSO server, the response is encoded. I have the key of the ...

understanding Shibboleth and SAML

I have a Drupal site I am standing up for a client. I ve been asked to use Single Sign on using SAML2 (where I would be the service provider and my client would be the identity provider). The best ...

Showing a secure password dialog on a web page

I ve built a Single-Sign-On system for our web network. It works like this: User clicks a login link on the site he wants to log in to (the "Unsafe Site"). The unsafe site s ID is passed in the URL. ...

Generate SAML 1.1 (and possibly 2.0) assertions

I m looking for a very easy and quick way to generate some SAML assertions. This is only going to be used for testing (using SOAP UI). So I just need something that can generate a valid assertion, ...

Cookie based SSO

How can I implement a cookie based single sign on without a sso server? I would to share the user logged in across multiple applications using only a cookie on the browser. In my mind it s working ...

热门标签