上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: OpenSSL证书转pfx pem证书转pfx证书分两种,一种带ca证书转换,一种不带ca证书转换 1. pem转pfx(不带ca证书) 以test.pem转test.pfx为例 openssl rsa -in test.pem -out test.key openssl x509 -in test 阅读全文
posted @ 2021-07-09 13:56 devs 阅读(617) 评论(0) 推荐(0) 编辑
摘要: Mozilla Firefox https://www.mozilla.org/en-US/firefox/all/#product-desktop-release https://www.mozilla.org/en-US/firefox/all/#product-desktop-develope 阅读全文
posted @ 2021-07-03 11:55 devs 阅读(830) 评论(0) 推荐(0) 编辑
摘要: 确认分区信息 fdisk -l Disk /dev/vda: 53.7 GB, 53687091200 bytes, 104857600 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 51 阅读全文
posted @ 2021-06-23 15:05 devs 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 在SQLite官网下载原始预编译包。 Precompiled Binaries for the .NET Standard 2.1 创建一个ASP.NET Core项目 项目添加预编译包解压缩后的引用 System.Data.SQLite.dll 随意代码 Con = new SQLiteConne 阅读全文
posted @ 2021-06-22 16:44 devs 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 正在编译 APK 文件... (按下 ESC 取消) Executing command: java.exe -jar "D:\Android\APK Easy Tool\Apktool\apktool_2.5.0.jar" b -f -o "D:\Android\APK Easy Tool\2-R 阅读全文
posted @ 2021-06-21 16:40 devs 阅读(1039) 评论(0) 推荐(0) 编辑
摘要: 可能原因:SELinux限制了Apache的端口设置 # semanage port -l | grep http -bash: semanage: command not found 如果出现semanage: command not found信息,则需要安装semanage yum -y in 阅读全文
posted @ 2021-06-15 22:37 devs 阅读(756) 评论(0) 推荐(0) 编辑
摘要: using (System.IO.MemoryStream ms = new System.IO.MemoryStream()) { using (System.IO.StreamWriter writer = new System.IO.StreamWriter(ms, Encoding.GetE 阅读全文
posted @ 2021-05-25 18:27 devs 阅读(552) 评论(0) 推荐(0) 编辑
摘要: _is64Bit = Environment.Is64BitOperatingSystem; private object ReadRegistryKeyValue(string keyPath, string valueName) { object obj = null; using (var b 阅读全文
posted @ 2021-05-14 12:59 devs 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Usage of msi2xml msi2xml [-q] [-n] [-m] [-e ENCODING] [-s [STYLESHEET]] [-b [DIR]] [-c [DIR[,MEDIACABS]] [-o XMLFILE] file -q --quiet quiet processing 阅读全文
posted @ 2021-04-08 18:40 devs 阅读(183) 评论(0) 推荐(0) 编辑
摘要: System.Security.Cryptography.RSACryptoServiceProvider cryptoServiceProvider = new System.Security.Cryptography.RSACryptoServiceProvider(4096); Console 阅读全文
posted @ 2021-03-31 14:42 devs 阅读(383) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页