Questions tagged [encryption]

Encryption is transforming information through a cipher to protect it from unauthorized access.

Encryption is the process of taking some information (the plain text), and transforming it (usually with a cypher and a key) so that it is secure. Assuming a sufficiently strong cypher and key have been chosen, this cyphertext can be shared widely, without the information being compromised.

The reverse of Encryption is Decryption, where the process is reversed (normally by someone holding the key and cypher details) to return the information.

See the Wikipedia Page for more details.

775 questions
1
vote
1 answer

Using the -H Option to Create Users with the pw Utility

I'm using pw to add users to a FreeBSD system and I'd like to use the -H option, e.g., pw add user userfoo -H pwfile The man page says that I need to have a password "supplied already encrypted in a form suitable for writing directly to the…
gvkv
  • 293
  • 3
  • 14
1
vote
2 answers

Encrypted partition and hardware failure

I have a kind of philosophical question. I'm about to set a new backup server and as time is passing encryption of data seems more and more reasonable. However what if the harddrive goes bad. I know that the question seems simple, but... ...there is…
Kris_R
  • 305
  • 1
  • 10
1
vote
2 answers

SSRS 2008 Encryption Key reset after server reboot

I have a development XP (SP2) SQL 2008 box being actively used by developers. When this computer is restarted, the SSRS encryption keys become deactivated and the only way to get SSRS working again is to restore the encryption key with a current…
littlefuzz
  • 21
  • 7
1
vote
2 answers

Recovering files without .encfs6.xml

I've lost my .encfs6.xml file for a encfs volume. I still know my passphrase. Is there anyway to regenerate the .encfs6.xml based on similar volumes and the passphrase? Any chance of brute-forcing?
cam
  • 123
  • 6
1
vote
1 answer

Storing Postfix's passwords in MySQL without encryption

I've been struggling with Postfix for past few days. Finally I managed to set it up with virtual mailboxes listed in MySQL and passwords encrypted with PAM. It was just then that I realized I need the passwords to be stored not-encrypted! I can't…
Mehran
  • 519
  • 1
  • 5
  • 20
1
vote
2 answers

EFS on MySql Data Folder Prevents MySql Service from Starting

I'm trying to encrypt my MySql database at rest. I have been looking at Truecrypt and EFS - I ultimately went with EFS because I can simply encrypt an existing folder without having to create a volume, etc etc. However, I'm running into a problem…
1
vote
1 answer

how to use GPG to decrypt multiple files to a different directory

I am trying to decrypt multiple files to a different directory keeping the existing filenames. When i run the below syntax it seems to decrypt them ok but it only ouputs to the screen. I would like to either output the files with the same name to a…
user3402451
  • 11
  • 1
  • 3
1
vote
1 answer

Password change reminder Ubuntu

I have an encrypted hard drive on my Linux box. When it was ready for me to change my password because of the 60 day expiration I ran into a problem. I changed the password and once I shutdown my computer for a while and turn it back on an hour or…
secure212
  • 228
  • 1
  • 3
  • 10
1
vote
2 answers

Ubuntu 13.10 - How to disable LVM and cryptsetup? cryptsetup: evms_activate is not available

EDIT: This issue is now resolved. For detailed instruction how to remove full disk encryption, please see the "Can I disable full-disk encryption?" topic, there you can find a step by step instruction how to remove full-disk…
Tom Raganowicz
  • 183
  • 1
  • 1
  • 9
1
vote
0 answers

How to change IIS Express Virtual Directory password encryption provider?

In Visual Studio 2012 I'm working on an ASP.NET MVC application which requires a Virtual Directory under the main application directory called "Shared". This happens to point to a UNC path, so I need to also specify the username & password to access…
Brian Lacy
  • 1,113
  • 4
  • 15
  • 23
1
vote
5 answers

Encrypted file system on Ubuntu cloud server

We have a cloud server (AWS) running Ubuntu 8.04. All the employees (around 15 people) in the company have system accounts in the server and all are sudoers. We want to provide a way for all the users to store private data which should be password…
Geos
  • 143
  • 5
1
vote
1 answer

Protecting SQL from Profiling

We have some sensitive IPR in some Stored Procedures. We encrypt the stored procedures. However, at the point they are created, they are plain text. Is there anyway we can prevent SQL Server Profiler from being used to monitor the execution of the…
THEMike
  • 175
  • 2
  • 9
1
vote
1 answer

Does my password is sent encrypted when I am mounting windows share on linux using CIFS?

Does my password is sent encrypted when I am mounting windows share on linux using CIFS? For mounting I'm using: mount -t cifs -o username=myuser //myhost/share /mnt/winmount
user51679
  • 125
  • 6
1
vote
1 answer

CentOS Password Change

I am looking for changing my centos password by using passwd with encryption. echo "Password1" | passwd --stdin username But if I'm using with above method, user will see what my password is. Does someone know how can I make "Password1" to be…
Sokphak
  • 13
  • 1
  • 5
1
vote
3 answers

Why is it considered bad practice to only protect one page with SSL instead of whole website

I know that protecting all pages with SSL will slow down the website and add overhead to the server resources. I also see many other websites only protecting their login and registration page, which I also want to do on my server running apache. Why…
user2722667
  • 121
  • 3