上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 29 下一页
摘要: SSL通信双方如何判断对方采用了国密 14 天前2020-03-25 21:45:11阅读 720 https://cloud.tencent.com/developer/search/article-国密 SSL通信涉及两方的参与者,通常采用的模型是Client/Server。如果我们开发Clie 阅读全文
posted @ 2020-04-09 19:57 Bigben 阅读(2817) 评论(0) 推荐(0) 编辑
摘要: C/S boringSSL那点事 王芳原创 1.背景 Google I/O开发者大会在2015年5月28日和29日于旧金山召开[1]。Google在大会上公布了一些新技术和新产品,其中包含google play、TV等等,其中最为万众瞩目的是新系统Android M(Android 6.0产品api 阅读全文
posted @ 2020-04-09 16:27 Bigben 阅读(3351) 评论(0) 推荐(0) 编辑
摘要: 从Chrome源码看浏览器的事件机制 2017年2月5日会编程的银猪3 Comments --> ∞ 在上一篇《从Chrome源码看浏览器如何构建DOM树》介绍了blink如何创建一棵DOM树,在这一篇将介绍事件机制。 上一篇还有一个地方未提及,那就是在构建完DOM之后,浏览器将会触发DOMCont 阅读全文
posted @ 2020-04-09 15:34 Bigben 阅读(297) 评论(0) 推荐(0) 编辑
摘要: rec_layer_s3.c 收到alert 1530: else if (alert_level == SSL3_AL_FATAL || is_tls13) { char tmp[16]; s->rwstate = SSL_NOTHING; s->s3->fatal_alert = alert_d 阅读全文
posted @ 2020-04-09 14:38 Bigben 阅读(3980) 评论(3) 推荐(0) 编辑
摘要: 【转】C++命名空间 namespace的作用和使用解析 一、 为什么需要命名空间(问题提出) 命名空间是ANSIC++引入的可以由用户命名的作用域,用来处理程序中 常见的同名冲突。 在 C语言中定义了3个层次的作用域,即文件(编译单元)、函数和复合语句。C++又引入了类作用域,类是出现在文件内的。 阅读全文
posted @ 2020-04-09 14:35 Bigben 阅读(1953) 评论(1) 推荐(0) 编辑
摘要: 从Chrome源码看HTTPS 李银城 ​ 前端开发 话题的优秀回答者 184 人赞同了该文章 我在《https连接的前几毫秒发生了什么》详细地介绍了https连接的过程,该篇通过抓包工具分析整个过程,本篇将从Chrome源码的角度着重介绍加密和解密的过程,并补充更多的细节。 Chrome/Chro 阅读全文
posted @ 2020-04-08 15:39 Bigben 阅读(1066) 评论(0) 推荐(0) 编辑
摘要: Hooking Chrome浏览器的SSL函数来读取SSL通信数据 聚锋实验室 2018-04-20 15:25 2015年,NetRipper首次在Defcon大会上面世。NetRipper是一款针对Windows操作系统的漏洞利用工具,它可以使用API hooking从一个低权限的用户那里截获网 阅读全文
posted @ 2020-04-08 15:28 Bigben 阅读(1609) 评论(0) 推荐(0) 编辑
摘要: WebRTC Windows版編譯(支援H264+OpenSSL) 摘要 本文介紹了在Windows下編譯WebRTC的方法,WebRTC預設支援VP8、VP9(谷歌自己的編碼)和BoringSSL(谷歌的OpenSSL分支,主要修復一些OpenSSL主線的漏洞),本文將介紹在Windows下讓We 阅读全文
posted @ 2020-04-08 15:02 Bigben 阅读(1206) 评论(0) 推荐(0) 编辑
摘要: 作者博客:http://www.cnblogs.com/guogangj/ 原标题为:那些证书相关的玩意儿(SSL,X.509,PEM,DER,CRT,CER,KEY,CSR,P12等) http://www.cnblogs.com/guogangj/p/4118605.html 参考英文维基百科中 阅读全文
posted @ 2020-04-07 16:59 Bigben 阅读(1577) 评论(0) 推荐(0) 编辑
摘要: OpenSSL和GmSSL在Windows下编译过程 本文用于记录GmSSL-2.0在Windows下的编译过程。 1,环境:Win7-x64,VS2015,编译WIN32库; 2,下载GmSSL-2.0源码; 3,编译:参考GmSSL官网编译说明,链接地址http://gmssl.org/docs 阅读全文
posted @ 2020-04-06 23:31 Bigben 阅读(3125) 评论(0) 推荐(0) 编辑
摘要: NDK开发 - 使用GMSSL库和OpenSSL库的注意点及编译 Devil_Chen关注 2019.08.05 11:17:00字数 591阅读 271 前言 GmSSL是一个开源的密码工具箱,支持SM2/SM3/SM4/SM9/ZUC等国密(国家商用密码)算法、SM2国密数字证书及基于SM2证书 阅读全文
posted @ 2020-04-06 23:30 Bigben 阅读(1271) 评论(0) 推荐(0) 编辑
摘要: Chromium内核原理之网络栈 查看网络:以前的:chrome://net-internals#sockets 现在用 chrome://net-export/ 捕获。用chrome://net-export 去看。 效果,比如看sockets多少个: 禁止自动更新 void V4UpdatePr 阅读全文
posted @ 2020-04-06 23:27 Bigben 阅读(2787) 评论(0) 推荐(0) 编辑
摘要: 跨平台:GN实践详解(ninja, 编译, windows/mac/android实战)展开目录一、概览二、跨平台代码编辑器三、GN入门四、示范工程五、关键细节六、结语 [编译器选项] 其中前两部分是前缀部分,原本没有跨平台构建经验和知识的同学可以借助来帮助理解,后四部分则是讲述GN工程的基本结构、 阅读全文
posted @ 2020-04-06 19:41 Bigben 阅读(19291) 评论(2) 推荐(1) 编辑
摘要: 1、gmssl组成 分为加密和通信两部分 2、加密 主要指的是sm2 sm3 sm4加密算法,以及相关的加密组件 3、通信 指的是gmtls 按照一个 GM/T 0024-2014规范实现的,采用双证书,签名证书+加密证书 4、生成证书 可使用地址https://github.com/jntass/ 阅读全文
posted @ 2020-04-03 19:15 Bigben 阅读(6319) 评论(0) 推荐(0) 编辑
摘要: https://bbs.360.cn/forum.php?mod=viewthread&tid=15660975 https://www.zhihu.com/question/36019564 阅读全文
posted @ 2020-04-03 19:14 Bigben 阅读(438) 评论(0) 推荐(0) 编辑
摘要: Inside look at modern web browser (part 4) By Mariko Kosaka Mariko is a drawsplainer Input is coming to the Compositor This is the last of the 4 part 阅读全文
posted @ 2020-04-03 17:24 Bigben 阅读(222) 评论(0) 推荐(0) 编辑
摘要: Inside look at modern web browser (part 2) By Mariko Kosaka Mariko is a drawsplainer What happens in navigation This is part 2 of a 4 part blog series 阅读全文
posted @ 2020-04-03 17:22 Bigben 阅读(229) 评论(0) 推荐(0) 编辑
摘要: Inside look at modern web browser (part 3) By Mariko Kosaka Mariko is a drawsplainer Inner workings of a Renderer Process This is part 3 of 4 part blo 阅读全文
posted @ 2020-04-03 17:21 Bigben 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 中文版: https://juejin.im/post/5b9b0932e51d450e9059c16a 第一 https://juejin.im/post/5bc293cf6fb9a05ce95c8468 第二 https://juejin.im/post/5bc29d56e51d450e9e44 阅读全文
posted @ 2020-04-03 17:20 Bigben 阅读(638) 评论(0) 推荐(0) 编辑
摘要: GN Reference This page is automatically generated from gn help --markdown all. 翻译版:https://blog.csdn.net/u014786330/article/details/84569694 GN Refere 阅读全文
posted @ 2020-04-03 15:38 Bigben 阅读(772) 评论(0) 推荐(0) 编辑
摘要: GN Quick Start guide Contents Running GN Setting up a build Passing build arguments Cross-compiling to a target OS or architecture Step-by-step Adding 阅读全文
posted @ 2020-04-03 15:36 Bigben 阅读(2027) 评论(1) 推荐(0) 编辑
摘要: GN build configuration This page provides some common build setups for the GN build. It assumes you already got a Chromium checkout. See also Run "gn 阅读全文
posted @ 2020-04-03 15:35 Bigben 阅读(831) 评论(0) 推荐(0) 编辑
摘要: Chromium GN构建工具的使用 把生命浪费在美好事物上2018-08-16 11:03 Chromium整体的构建过程大体如下: 这个过程大体为,先由gn工具根据各个模块的.gn配置文件,或gyp工具根据各个模块的.gyp配置文件,产生.ninja文件,再由ninja工具产生最终的目标文件,比 阅读全文
posted @ 2020-04-03 13:45 Bigben 阅读(3266) 评论(0) 推荐(0) 编辑
摘要: 1,安装"Debugging Tools for Windows“ Control Panel → Programs → Programs and Features → Select the “Windows Software Development Kit” → Change → Change → 阅读全文
posted @ 2020-04-03 10:54 Bigben 阅读(1101) 评论(0) 推荐(0) 编辑
摘要: Debugging SSL on Linux To help anyone looking at the SSL code, here are a few tips I've found handy. Contents Logging Network Traces Logging There are 阅读全文
posted @ 2020-04-02 19:04 Bigben 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Life of a URLRequest This document gives an overview of the browser's lower-layers for networking. Networking in the browser ranges from high level Ja 阅读全文
posted @ 2020-04-02 16:51 Bigben 阅读(1024) 评论(0) 推荐(0) 编辑
摘要: China, GitHub and the man-in-the-middle Submitted by martin on Wed, Jan 30, 2013 What happened? At around 8pm, on January 26, reports appeared on Weib 阅读全文
posted @ 2020-04-02 13:50 Bigben 阅读(155) 评论(0) 推荐(0) 编辑
摘要: ubuntu 升级QT版本后,在新机上发布QT程序报错:qt.qpa.plugin: Could not find the Qt platform plugin “xcb” in “”原创啊拉丁的鱼 最后发布于2019-11-25 16:32:51 阅读数 511 收藏展开 本地原本使用的QT版本是 阅读全文
posted @ 2020-04-01 16:22 Bigben 阅读(5516) 评论(0) 推荐(0) 编辑
摘要: 在命令行用 qmake 将 xxx.pro项目生成 make文件。注意qmake的路径,与kit的版本有关。 阅读全文
posted @ 2020-03-31 20:36 Bigben 阅读(328) 评论(0) 推荐(0) 编辑
摘要: With the following includes: #include <X11/X.h> #include <X11/Xlib.h> #include <X11/Xutil.h> I needed to undef a few definitions: #undef Bool #undef C 阅读全文
posted @ 2020-03-31 17:38 Bigben 阅读(862) 评论(0) 推荐(0) 编辑
摘要: Ubuntu16安装GTK+2.0教程 Step 1 修改清华源(修改完可提高下载速度) 先运行 sudo gedit /etc/apt/sources.list 替换文本内容,保存,退出。 # 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释 deb https://m 阅读全文
posted @ 2020-03-31 09:28 Bigben 阅读(711) 评论(0) 推荐(0) 编辑
摘要: 运行软件的目标机器报错: ./qt_cef_poc --no-sandbox --url=http://www.baidu.com ./qt_cef_poc: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by ./libstd 阅读全文
posted @ 2020-03-29 21:23 Bigben 阅读(20452) 评论(0) 推荐(0) 编辑
摘要: CEF3的使用说明及CMake使用原创evil_119 最后发布于2017-12-08 16:48:16 阅读数 6245 收藏展开一.CEF简介 Chromium Embedded Framework (CEF)是个基于Google Chromium项目的开源Web browser控件,支持Win 阅读全文
posted @ 2020-03-28 10:44 Bigben 阅读(1877) 评论(0) 推荐(0) 编辑
摘要: # Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights # reserved. Use of this source code is governed by a BSD-style license that # 阅读全文
posted @ 2020-03-27 18:59 Bigben 阅读(1480) 评论(0) 推荐(0) 编辑
摘要: CEF3在linux(Ubuntu)环境下编译和运行问题记录 原创 Len丶丶林 发布于2020-01-08 09:53:09 阅读数 1 收藏 更新于2020-01-08 09:53:09 分类专栏: c++语言 文章标签: cef Cef3 linux 浏览器 chromuim 版权声明:本文为 阅读全文
posted @ 2020-03-26 22:35 Bigben 阅读(3728) 评论(1) 推荐(0) 编辑
摘要: http://www.manongjc.com/article/107922.html linux编译 https://blog.csdn.net/dangwei_90/article/details/100924889?depth_1-utm_source=distribute.pc_releva 阅读全文
posted @ 2020-03-25 11:39 Bigben 阅读(739) 评论(0) 推荐(0) 编辑
摘要: BranchesAndBuilding View History This Wiki page provides information about CEF branches and instructions for downloading, building and packaging sourc 阅读全文
posted @ 2020-03-24 18:39 Bigben 阅读(1315) 评论(0) 推荐(0) 编辑
摘要: chromium中的GN构建系统原创云水木石 最后发布于2017-06-23 17:16:35 阅读数 6924 收藏展开阅读最新的chromium源码,发现项目的构建系统已经从GYP全面切换到GN了。在软件开发中,经常有人忠告:不要重复造轮子。但谷歌可不管这个,造的轮子一个接一个,谁叫人家牛呢?c 阅读全文
posted @ 2020-03-24 11:46 Bigben 阅读(1944) 评论(0) 推荐(0) 编辑
摘要: Getting Around the Chromium Source Code Directory Structure 目录 1 High-level overview 2 Top-level projects 3 Quick reference for the directory tree und 阅读全文
posted @ 2020-03-23 23:25 Bigben 阅读(345) 评论(0) 推荐(0) 编辑
摘要: The old instructions for getting the code This page is obsolete. Please see Get the Code: Checkout, Build, & Run Chromium instead. Prerequisites Chrom 阅读全文
posted @ 2020-03-23 23:09 Bigben 阅读(139) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 29 下一页