Encrypted/Encryption Encryption is the conversion of data into a form, called a ciphertext, that cannot be easily understood by unauthorized people. Decryption is the process of converting encrypted data back into its original form, so it can be understood.
0
votes
0answers
15 views
Decrypt and display a file on Google Document Viewer
I want to show a encrypted file by decrypting its content on Google Document Viewer.
First I download the file, then decrypt it. Finally I pass the decrypted content to Google Document Viewer.
In ...
0
votes
0answers
33 views
Run SHC encrypted bash script from PHP
I am trying to run an encrypted bash script from php page;
when i run it without encryption, it runs normally
script has two variables that is getting from php code and only one line of code
when ...
1
vote
6answers
71 views
Is there an easy way to encrypt a java object?
I'd like to store a serialized object to a file however I'd like to make it encrypted. It doesn't need to be really strong encryption. I just want something easy (preferably a couple lines of code ...
9
votes
8answers
362 views
how to keep c++ variables in RAM securely?
I'm working on a C++ application which is keeping some user secret keys in the RAM. This secret keys are highly sensitive & I must minimize risk of any kind of attack against them.
I'm using a ...
0
votes
1answer
17 views
Check In Encrypted Procedures to VSS
I am trying to cut-over stored procedures from SSMS to Visual Source Safe.
My question is this.
I have a few procedures which are encrypted with the WITH ENCRYPTION keyword.
Now if I am to check-in ...
0
votes
1answer
220 views
Script to open encrypted excel file, that has a dynamic filename ending in “mmddyyyy”
Hi I need a script for my SSIS package that will open my encrypted excel file, that has a dynamic filename ending in "mmddyyyy".
I have a powershell script that will open and reset the password using ...
0
votes
2answers
58 views
Translate text in ioncube encoded files using jQuery
I am having a Ioncube php script i would like to translate entierly.
I have worked hard to perform the first part : translating the template files. But, there is still lots of text stuck in the ...
0
votes
2answers
77 views
How to Protect a File? [duplicate]
Am having a FILE named Sample. It may be of any type(.txt/.doc/.docx/.pdf/....). Now I want to set a password for that file. If it is possible just help me with code's.
0
votes
0answers
199 views
Extract files inside encrypted .zip file in resource of ios app
As the title says, there's a zip file inside an ios app that needs extracting, but it is encrypted (needs password) when trying to open with any archiver program (WinRAR, WinZip, etc)
But what's ...
1
vote
0answers
137 views
sending encrypted password to LDAP server(Active Directory 2008)
I could successfully login to AD with a clear-text password using the MD5 Digest authentication, additionally JNDI performs SASL encryption / Hash work on behalf of us, so everything works fine. ...
0
votes
0answers
33 views
Code for generating joomla2.5 users encrypted passwords .?
in joomla there is always a fixed encrypted code like for "123456" its always "3919cdaf3021c3c8cdce0992d2d01a65:mBEUjWqT79mFVB43o8YSU2wBt3jWk9lb"
but i have found a code and it generate randomly on ...
2
votes
2answers
317 views
Chef Cookbook Compilation Error While Bootstrapping The Node
I am using chef to bootstrap a node. I have created encrypted data bags and copied the secret key on the node as /etc/chef/encrypted_data_bag_secret.
When I try to bootstrap the node, I am getting ...
-1
votes
1answer
184 views
EPub encryption with private / public key [closed]
I am trying to encrypt whole EPub's XHTML / HTML files using a private key, and then append a public key in META-INF/encrpytion.xml so that the user would be able to read the book this way. Private / ...
0
votes
0answers
35 views
Compare encrypted data and find the key
Let's say you have two byte arrays. Both contain the same data and were encrypted using the same algorithm but with a different key. Algorithm is very simple (xor, rotation etc). You know the key, how ...
0
votes
0answers
48 views
what should my “control information” be if my protocol is “application/pkcs7-mime”?
I'm tasked with creating a multipart/encrypted message. According to RFC1847 I need to create a multipart message with two parts, where part 1 contains the "control information" for my protocol ...