bitlocker

Using a Java Card with Bitlocker

一世执手 提交于 2021-02-08 07:26:21
问题 I want to use J2A040 JCOP 21-36k java cards to implement a smart card driven bitlocker-to-go solution using gidsapplet and OpenSC but when attempting to put a certificate on the card (certreq -new) I have not been able to get past the "The smart card is not fully personalized for use" error from windows. This is the dump contents with gids-tool: Dumping Files: Found 5 entries in the masterfile Directory: mscp FileIdentifier: 0xa000 File: \cardid FileIdentifier: 0xa012 DataObjectIdentifier:

Getting over a 426 upgrade required

最后都变了- 提交于 2021-01-29 08:35:28
问题 I've been working on a web app (front Angular, back Node/Express/Mongo) for a few months now. I run Angular on localhost:4200 and Node on localhost:3000 Some people in our team are running the backend in a VM that runs on their computers. So that the app works in both cases we've edited the windows hosts file to make the app point to the correct place (either the VM or the back on the local machine) 127.0.0.1 mysite Developers using the VM changed 127.0.0.1 with their VM's IP. Everything

How to write the physical sectors of a BitLocker-encrypted volume?

非 Y 不嫁゛ 提交于 2020-05-30 09:48:51
问题 I call CreateFile() and I open \\.\PhysicalDrive0 , then I read the sectors of a BitLocker-encrypted volume, and everything works fine. This way I create a backup copy of the physical (encrypted) sectors of a volume that is encrypted with BitLocker. Then, I call CreateFile() again and I open \\.\PhysicalDrive0 again, then I try to write the sectors of said BitLocker-encrypted volume (I'm trying to restore the backup), and it doesn't work. If the volume is unlocked, I get an IOException with

保护我的文件:Windows Bitlocker+虚拟硬盘VHD

杀马特。学长 韩版系。学妹 提交于 2020-02-28 13:45:11
我之前一直使用的TrueCrypt作为我的加密工具,后来升级到Window 10后,我改用了Windows自带的BitLocker作为我的加密工具,优点: 系统自带,不用安装额外的工具 和虚拟硬盘结合,加密整个驱动器 一次性加密,之后在存取文件时速度快,不需要再对文件进行加解密 延伸阅读: 升级Windows 10后: Windows 10中新的文件管理方式:快速访问、固定文件夹、文件过滤器和文件分组 目录: 创建VHD虚拟硬盘 初始化虚拟硬盘,创建卷 启用BitLocker加密驱动器 我把哪些资料放入加密磁盘 结束语:提高信息安全意识,保护个人重要资料 阅读全文 来源: oschina 链接: https://my.oschina.net/u/52437/blog/516974

Detect BitLocker programmatically from c# without admin

北慕城南 提交于 2019-12-19 07:00:10
问题 From various threads I've cobbled together how to check for BitLocker programmatically like this: private void TestBitLockerMenuItem_Click(object sender, RoutedEventArgs e) { var path=new ManagementPath(@"\ROOT\CIMV2\Security\MicrosoftVolumeEncryption") { ClassName="Win32_EncryptableVolume" }; var scope=new ManagementScope(path); path.Server=Environment.MachineName; var objectSearcher=new ManagementClass(scope, path, new ObjectGetOptions()); foreach (var item in objectSearcher.GetInstances())

Detect BitLocker programmatically from c# without admin

為{幸葍}努か 提交于 2019-12-05 05:16:15
From various threads I've cobbled together how to check for BitLocker programmatically like this: private void TestBitLockerMenuItem_Click(object sender, RoutedEventArgs e) { var path=new ManagementPath(@"\ROOT\CIMV2\Security\MicrosoftVolumeEncryption") { ClassName="Win32_EncryptableVolume" }; var scope=new ManagementScope(path); path.Server=Environment.MachineName; var objectSearcher=new ManagementClass(scope, path, new ObjectGetOptions()); foreach (var item in objectSearcher.GetInstances()) { MessageBox.Show(item["DeviceID"].ToString()+" "+item["ProtectionStatus"].ToString()); } } But it