码迷,mamicode.com
首页 >  
搜索关键字:crypt    ( 112个结果
linux6中grub菜单加密码
linux6中grub菜单加密码grub加密码的目的:防止他人修改grub进行内核等启动设置,以及用单用户模式启动进行破解root密码等操作。实际上此步可以在安装系统的过程中设定,安装系统之后的具体步骤如下:先利用/sbin/grub-md5-crypt产生一个MD5密码串,命令如下:[root@ceshiji~]#..
分类:系统相关   时间:2017-06-10 10:47:45    阅读次数:175
Python_字符串简单加密解密
1 def crypt(source,key): 2 from itertools import cycle 3 result='' 4 temp=cycle(key) 5 for ch in source: 6 result=result+chr(ord(ch)^ord(next(temp))) ... ...
分类:编程语言   时间:2017-06-08 15:00:16    阅读次数:311
App Extension的脱壳办法
App Extension的脱壳办法 从app store下载的app和app extension是加过密的,可以通过otool查看: $ otool -l binary_name | grep crypt cryptoff 16384 cryptsize 294912 cryptid 1 iPho ...
分类:移动开发   时间:2017-06-04 20:04:47    阅读次数:155
[filesystem][archlinux][disk encryption][btrfs] btrfs
fork from here http://www.cnblogs.com/hugetong/p/6914248.html boot分区,MBR加密:https://wiki.archlinux.org/index.php/Dm-crypt/Specialties#Securing_the_unen ...
分类:系统相关   时间:2017-06-02 22:02:24    阅读次数:247
[cipher][archlinux][disk encryption][btrfs] 磁盘分区加密 + btrfs
科普链接:https://wiki.archlinux.org/index.php/Disk_encryption 前面的链接关于硬盘加密,讲了几种,基本上就是选dm-crypt with LUKS 在grub中,解密根分区以及/boot分区。 dm-crypt文档:https://wiki.arc ...
分类:系统相关   时间:2017-06-02 20:24:03    阅读次数:390
Laravel之加密解密/日志/异常处理及自定义错误
一.加密解密 1.加密Crypt::encrypt($request->secret) 2.解密try { $decrypted = Crypt::decrypt($encryptedValue);} catch (DecryptException $e) { //} 二.日志 1.配置文件conf ...
分类:其他好文   时间:2017-06-01 20:07:08    阅读次数:309
DECODE(crypt_str, pswd_str)
DECODE(crypt_str, pswd_str) 使用 pswd_str 作为密码,解密加密字符串 crypt_str ...
分类:其他好文   时间:2017-05-24 13:41:23    阅读次数:292
CentOS5/6设置单用户加密
- 首先打开内核主参数文件 - 在第一个红色指针那里写入password --md5 (使用md5加密算法)光标停在第二个指针那里使用grup-md5-crypt导入加密的密码,回车之后默认输两遍密码, 静默模式输出 - 把导入的指令时出现的指令删除,只保留密码加载到--md5后面,在vim里面导入 ...
分类:其他好文   时间:2017-05-14 13:37:02    阅读次数:142
linux-centos7-SSM-iscsi存储
最新版本的CentOS/RHEL7现在随带系统存储管理器(又叫ssm),这是一种统一的命令行界面,由红帽公司开发,用于管理各种各样的存储设备。目前,有三种可供ssm使用的卷管理后端:LVM、Btrfs和Crypt首先安装ssm包yumrpm都可以包名system-storage-manager******ssmlist查看信息,分..
分类:系统相关   时间:2017-03-23 15:12:36    阅读次数:281
PHP实现加密的几种方式介绍
1. MD5加密不可逆加密md5($password)2. Crype加密string crypt ( string $str [, string $salt ] )不可逆3. Sha1加密string sha1 ( string $str [, bool $raw_output = false ] ...
分类:Web程序   时间:2017-03-13 13:39:25    阅读次数:147
112条   上一页 1 ... 3 4 5 6 7 ... 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!