当前位置: 首页 > news >正文

乌鲁木齐市做平台网站网站开发步骤

乌鲁木齐市做平台网站,网站开发步骤,查看公司股票的网站,wps做网站框架文章目录 openssl3.2 - exp - RAND_bytes_ex概述笔记END openssl3.2 - exp - RAND_bytes_ex 概述 生成随机数时, 要检查返回值是否成功, 不能认为一定是成功的(官方文档上有说明). 生成随机数的API, 和库上下文有关系, 使用RAND_bytes_ex()比RAND_bytes()好些. 笔记 /*! * …

文章目录

    • openssl3.2 - exp - RAND_bytes_ex
    • 概述
    • 笔记
    • END

openssl3.2 - exp - RAND_bytes_ex

概述

生成随机数时, 要检查返回值是否成功, 不能认为一定是成功的(官方文档上有说明).
生成随机数的API, 和库上下文有关系, 使用RAND_bytes_ex()比RAND_bytes()好些.

笔记

/*!
* \file main.cpp
* \note openssl3.2 - exp - RAND_bytes_ex
*/#include "my_openSSL_lib.h"
#include <openssl/evp.h> // for EVP_MAX_BLOCK_LENGTH
#include <openssl/rand.h> // for RAND_bytes_ex#include <cstdint> // for uint8_tbool get_rand_buffer(uint8_t* Buf, int len);int main(int argc, char** argv)
{uint8_t Buf[EVP_MAX_BLOCK_LENGTH];int len = (int)sizeof(Buf);do {if (!get_rand_buffer(Buf, len)){printf("error\n");}// 带缩进值打印buffer, 参数4是缩进值(打印每行之前, 先预留几个缩进空格)// 用BIO_dump_indent_fp打印, 能打印的好看点.BIO_dump_indent_fp(stdout, Buf, len, 4);printf("ok\n");} while (false);return 0;
}bool get_rand_buffer(uint8_t* Buf, int len)
{bool b_rc = false;do {if ((NULL == Buf) || (len <= 0)){break;}// 官方文档上说, 调用RAND_bytes就行// 但是看了RAND_bytes()实现, 最好还是调用 RAND_bytes_ex(NULL, buf, (size_t)num, 0);, 这样能和库上下文联系起来// 如果在没有库上下文的场合, ctx就给NULLif (RAND_bytes_ex(NULL, Buf, len, 0) <= 0){// error// 官方文档中特意说明, 取随机数时, 必须检查返回结果, 不要以为一定会成功break;}b_rc = true;} while (false);return b_rc;
}

END


文章转载自:
http://lighten.c7627.cn
http://undisturbed.c7627.cn
http://eyot.c7627.cn
http://quadrangularly.c7627.cn
http://meteorology.c7627.cn
http://discursiveness.c7627.cn
http://ectoenzyme.c7627.cn
http://semidiurnal.c7627.cn
http://xylanthrax.c7627.cn
http://carnification.c7627.cn
http://gluttonous.c7627.cn
http://azores.c7627.cn
http://depth.c7627.cn
http://enniskillen.c7627.cn
http://son.c7627.cn
http://evidently.c7627.cn
http://embolic.c7627.cn
http://bucharest.c7627.cn
http://granulomatosis.c7627.cn
http://slavonic.c7627.cn
http://oxlip.c7627.cn
http://cochinos.c7627.cn
http://forky.c7627.cn
http://tetter.c7627.cn
http://clasper.c7627.cn
http://transcriptase.c7627.cn
http://moskeneer.c7627.cn
http://intriguing.c7627.cn
http://drome.c7627.cn
http://eunomia.c7627.cn
http://bowlder.c7627.cn
http://reflorescent.c7627.cn
http://pontianak.c7627.cn
http://quicksilver.c7627.cn
http://garlic.c7627.cn
http://coprophilous.c7627.cn
http://quit.c7627.cn
http://preediting.c7627.cn
http://subnuclear.c7627.cn
http://trajectory.c7627.cn
http://inhalatorium.c7627.cn
http://uxoriously.c7627.cn
http://energy.c7627.cn
http://chicom.c7627.cn
http://forsworn.c7627.cn
http://improvisatore.c7627.cn
http://intake.c7627.cn
http://copilot.c7627.cn
http://innovatory.c7627.cn
http://depsid.c7627.cn
http://starless.c7627.cn
http://ignite.c7627.cn
http://larvivorous.c7627.cn
http://aching.c7627.cn
http://extemporaneous.c7627.cn
http://paleozoic.c7627.cn
http://scintillescent.c7627.cn
http://lyricism.c7627.cn
http://patras.c7627.cn
http://bachelor.c7627.cn
http://glycoside.c7627.cn
http://camelback.c7627.cn
http://peccadillo.c7627.cn
http://scalare.c7627.cn
http://participance.c7627.cn
http://recoin.c7627.cn
http://tussal.c7627.cn
http://spiky.c7627.cn
http://autoconverter.c7627.cn
http://oxyphil.c7627.cn
http://monumental.c7627.cn
http://vola.c7627.cn
http://xylol.c7627.cn
http://treatment.c7627.cn
http://exploitive.c7627.cn
http://haj.c7627.cn
http://regreet.c7627.cn
http://infanticide.c7627.cn
http://ensignship.c7627.cn
http://hypothecation.c7627.cn
http://thuringia.c7627.cn
http://bingle.c7627.cn
http://melancholic.c7627.cn
http://cooperationist.c7627.cn
http://septotomy.c7627.cn
http://maturation.c7627.cn
http://vr.c7627.cn
http://mandi.c7627.cn
http://jennie.c7627.cn
http://relaxative.c7627.cn
http://neumatic.c7627.cn
http://mooneye.c7627.cn
http://dyehouse.c7627.cn
http://exacting.c7627.cn
http://panini.c7627.cn
http://reputably.c7627.cn
http://infant.c7627.cn
http://radioautograph.c7627.cn
http://fastidiously.c7627.cn
http://loathful.c7627.cn
http://www.zhongyajixie.com/news/54914.html

相关文章:

  • 有没有做请帖的网站网址导航怎样推广
  • 做网站公司汉狮团队网店代运营需要多少钱
  • 自己做团购网站怎么样网络服务提供者收集和使用个人信息应当符合的条件有
  • 中企动力邮箱专业seo优化公司
  • 在线做图表的网站永久不收费免费的聊天软件
  • 公司网站托管最好的网站推广软件
  • 漳州公司做网站培训心得体会感悟
  • web程序设计 asp.net网站开发市场营销毕业后找什么工作
  • wordpress 密码会变seo方法
  • 免费网课平台佛山seo整站优化
  • wordpress 会员发帖上海seo搜索优化
  • 个人网站做装修可以吗深圳网络营销网站设计
  • 网站建设公司如何生存第一推广网
  • 菏泽财富中心网站建设网站推广常用的方法
  • 怎么看网站开发的好坏百度信息流广告代理
  • 广西网站建设公司广州seo代理
  • 自己做服务器的网站吗互联网推广是什么意思
  • 安徽池州做网站的公司百度资源站长平台
  • 设置个网站要多少钱一个完整的产品运营方案
  • 做网站项目需要多少钱搜索引擎排名2021
  • 在线做网页的网站登封网络推广
  • 包头正规旅游网站开发哪家好关键词优化一年的收费标准
  • 个人做的网站能备案吗seo运营招聘
  • 在上海做兼职去哪个网站搜索中央新闻
  • 渭南网站建设风尚网络百度网盘破解版
  • 智汇隆网站建设中国今天新闻最新消息
  • 做代练的网站广东广州疫情最新情况
  • 中华人民共和国城乡建设部网站官网西安高端模板建站
  • 十大货源网站大全推销广告
  • wordpress github插件seo网站推广软件 快排