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

行业垂直网站开发建站平台在线提交功能

行业垂直网站开发,建站平台在线提交功能,wordpress太多重定向,成都 网站建设 app 开发文章目录 openssl3.2 - 官方demo学习 - encode - rsa_encode.c概述笔记END openssl3.2 - 官方demo学习 - encode - rsa_encode.c 概述 命令行参数 server_priv_key.pem client_priv_key.pem 这2个证书是前面certs目录里面做的 官方这个程序有bug, 给出2个证书, 还要从屏幕上输…

文章目录

    • openssl3.2 - 官方demo学习 - encode - rsa_encode.c
    • 概述
    • 笔记
    • END

openssl3.2 - 官方demo学习 - encode - rsa_encode.c

概述

命令行参数 server_priv_key.pem client_priv_key.pem
这2个证书是前面certs目录里面做的
官方这个程序有bug, 给出2个证书, 还要从屏幕上输入
if (OSSL_DECODER_from_fp(dctx, f) == 0) { /*< 在这里阻塞住了, 让在屏幕上输入东西, 让我输入啥啊 ?
关键是输入了, 回车也不返回程序.
先放这里, 等整明白了, 再来修正这个工程.

笔记

/*!
\file rsa_encode.c
\note openssl3.2 - 官方demo学习 - encode - rsa_encode.c
命令行参数 server_priv_key.pem client_priv_key.pem
这2个证书是前面certs目录里面做的
官方这个程序有bug, 给出2个证书, 还要从屏幕上输入
if (OSSL_DECODER_from_fp(dctx, f) == 0) { /*< 在这里阻塞住了, 让在屏幕上输入东西, 让我输入啥啊 ? 
关键是输入了, 回车也不返回程序.
先放这里, 等整明白了, 再来修正这个工程.
*//*-* Copyright 2022-2023 The OpenSSL Project Authors. All Rights Reserved.** Licensed under the Apache License 2.0 (the "License").  You may not use* this file except in compliance with the License.  You can obtain a copy* in the file LICENSE in the source distribution or at* https://www.openssl.org/source/license.html*/
#include <string.h>
#include <openssl/decoder.h>
#include <openssl/encoder.h>
#include <openssl/evp.h>#include "my_openSSL_lib.h"/** Example showing the encoding and decoding of RSA public and private keys. A* PEM-encoded RSA key is read in from stdin, decoded, and then re-encoded and* output for demonstration purposes. Both public and private keys are accepted.** This can be used to load RSA keys from a file or save RSA keys to a file.*//* A property query used for selecting algorithm implementations. */
static const char* propq = NULL;/** Load a PEM-encoded RSA key from a file, optionally decrypting it with a* supplied passphrase.*/
static EVP_PKEY* load_key(OSSL_LIB_CTX* libctx, FILE* f, const char* passphrase)
{int ret = 0;EVP_PKEY* pkey = NULL;OSSL_DECODER_CTX* dctx = NULL;int selection = 0;/** Create PEM decoder context expecting an RSA key.** For raw (non-PEM-encoded) keys, change "PEM" to "DER".** The selection argument here specifies whether we are willing to accept a* public key, private key, or either. If it is set to zero, either will be* accepted. If set to EVP_PKEY_KEYPAIR, a private key will be required, and* if set to EVP_PKEY_PUBLIC_KEY, a public key will be required.*/dctx = OSSL_DECODER_CTX_new_for_pkey(&pkey, "PEM", NULL, "RSA",selection,libctx, propq);if (dctx == NULL) {fprintf(stderr, "OSSL_DECODER_CTX_new_for_pkey() failed\n");goto cleanup;}/** Set passphrase if provided; needed to decrypt encrypted PEM files.* If the input is not encrypted, any passphrase provided is ignored.** Alternative methods for specifying passphrases exist, such as a callback* (see OSSL_DECODER_CTX_set_passphrase_cb(3)), which may be more useful for* interactive applications which do not know if a passphrase should be* prompted for in advance, or for GUI applications.*/if (passphrase != NULL) {if (OSSL_DECODER_CTX_set_passphrase(dctx,(const unsigned char*)passphrase,strlen(passphrase)) == 0) {fprintf(stderr, "OSSL_DECODER_CTX_set_passphrase() failed\n");goto cleanup;}}/* Do the decode, reading from file. */if (OSSL_DECODER_from_fp(dctx, f) == 0) { /*< 在这里阻塞住了, 让在屏幕上输入东西, 让我输入啥啊 ? */ fprintf(stderr, "OSSL_DECODER_from_fp() failed\n");goto cleanup;}ret = 1;
cleanup:OSSL_DECODER_CTX_free(dctx);/** pkey is created by OSSL_DECODER_CTX_new_for_pkey, but we* might fail subsequently, so ensure it's properly freed* in this case.*/if (ret == 0) {EVP_PKEY_free(pkey);pkey = NULL;}return pkey;
}/** Store an RSA public or private key to a file using PEM encoding.** If a passphrase is supplied, the file is encrypted, otherwise* it is unencrypted.*/
static int store_key(EVP_PKEY* pkey, FILE* f, const char* passphrase)
{int ret = 0;int selection;OSSL_ENCODER_CTX* ectx = NULL;/** Create a PEM encoder context.** For raw (non-PEM-encoded) output, change "PEM" to "DER".** The selection argument controls whether the private key is exported* (EVP_PKEY_KEYPAIR), or only the public key (EVP_PKEY_PUBLIC_KEY). The* former will fail if we only have a public key.** Note that unlike the decode API, you cannot specify zero here.** Purely for the sake of demonstration, here we choose to export the whole* key if a passphrase is provided and the public key otherwise.*/selection = (passphrase != NULL)? EVP_PKEY_KEYPAIR: EVP_PKEY_PUBLIC_KEY;ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, selection, "PEM", NULL, propq);if (ectx == NULL) {fprintf(stderr, "OSSL_ENCODER_CTX_new_for_pkey() failed\n");goto cleanup;}/** Set passphrase if provided; the encoded output will then be encrypted* using the passphrase.** Alternative methods for specifying passphrases exist, such as a callback* (see OSSL_ENCODER_CTX_set_passphrase_cb(3), just as for OSSL_DECODER_CTX;* however you are less likely to need them as you presumably know whether* encryption is desired in advance.** Note that specifying a passphrase alone is not enough to cause the* key to be encrypted. You must set both a cipher and a passphrase.*/if (passphrase != NULL) {/* Set cipher. AES-128-CBC is a reasonable default. */if (OSSL_ENCODER_CTX_set_cipher(ectx, "AES-128-CBC", propq) == 0) {fprintf(stderr, "OSSL_ENCODER_CTX_set_cipher() failed\n");goto cleanup;}/* Set passphrase. */if (OSSL_ENCODER_CTX_set_passphrase(ectx,(const unsigned char*)passphrase,strlen(passphrase)) == 0) {fprintf(stderr, "OSSL_ENCODER_CTX_set_passphrase() failed\n");goto cleanup;}}/* Do the encode, writing to the given file. */if (OSSL_ENCODER_to_fp(ectx, f) == 0) {fprintf(stderr, "OSSL_ENCODER_to_fp() failed\n");goto cleanup;}ret = 1;
cleanup:OSSL_ENCODER_CTX_free(ectx);return ret;
}int main(int argc, char** argv)
{int ret = EXIT_FAILURE;OSSL_LIB_CTX* _ossl_lib_ctx = NULL;EVP_PKEY* _evp_pkey = NULL;const char* passphrase_in = NULL, * passphrase_out = NULL;/* usage: rsa_encode <passphrase-in> <passphrase-out> */if (argc > 1 && argv[1][0])passphrase_in = argv[1];if (argc > 2 && argv[2][0])passphrase_out = argv[2];/* Decode PEM key from stdin and then PEM encode it to stdout. */_evp_pkey = load_key(_ossl_lib_ctx, stdin, passphrase_in);if (_evp_pkey == NULL) {fprintf(stderr, "Failed to decode key\n");goto cleanup;}if (store_key(_evp_pkey, stdout, passphrase_out) == 0) {fprintf(stderr, "Failed to encode key\n");goto cleanup;}ret = EXIT_SUCCESS;
cleanup:EVP_PKEY_free(_evp_pkey);OSSL_LIB_CTX_free(_ossl_lib_ctx);return ret;
}

END


文章转载自:
http://dinncomanhood.wbqt.cn
http://dinncoyttrialite.wbqt.cn
http://dinncoformation.wbqt.cn
http://dinncoinvocate.wbqt.cn
http://dinncostrophoid.wbqt.cn
http://dinncosickener.wbqt.cn
http://dinncostaphylococcal.wbqt.cn
http://dinncolemuroid.wbqt.cn
http://dinncolaius.wbqt.cn
http://dinncoametoecious.wbqt.cn
http://dinncodressmake.wbqt.cn
http://dinncojokari.wbqt.cn
http://dinncowhereof.wbqt.cn
http://dinncowolfishly.wbqt.cn
http://dinncosystematize.wbqt.cn
http://dinncosickliness.wbqt.cn
http://dinncolegato.wbqt.cn
http://dinncolupin.wbqt.cn
http://dinncoimmortalise.wbqt.cn
http://dinncovbi.wbqt.cn
http://dinncosuppleness.wbqt.cn
http://dinncoflyflap.wbqt.cn
http://dinncocauliform.wbqt.cn
http://dinncoevacuant.wbqt.cn
http://dinncounkink.wbqt.cn
http://dinncocatastasis.wbqt.cn
http://dinncocoprolaliac.wbqt.cn
http://dinncogiga.wbqt.cn
http://dinncoprolan.wbqt.cn
http://dinncopercussive.wbqt.cn
http://dinncoinspirational.wbqt.cn
http://dinncosendmail.wbqt.cn
http://dinncobiophilosophy.wbqt.cn
http://dinncoscrupulosity.wbqt.cn
http://dinncotricotine.wbqt.cn
http://dinncobranching.wbqt.cn
http://dinncoannotation.wbqt.cn
http://dinncocrissum.wbqt.cn
http://dinncolissome.wbqt.cn
http://dinncoeryngium.wbqt.cn
http://dinncochattel.wbqt.cn
http://dinncopinfish.wbqt.cn
http://dinncoautopia.wbqt.cn
http://dinncocounterspy.wbqt.cn
http://dinncocorridor.wbqt.cn
http://dinncofrore.wbqt.cn
http://dinncomayan.wbqt.cn
http://dinncoallargando.wbqt.cn
http://dinncoquadrature.wbqt.cn
http://dinncoimperceivable.wbqt.cn
http://dinncolacrimator.wbqt.cn
http://dinncogranulocytopenia.wbqt.cn
http://dinncomultistage.wbqt.cn
http://dinncosepsis.wbqt.cn
http://dinncowhimling.wbqt.cn
http://dinncoclinic.wbqt.cn
http://dinncodomesticable.wbqt.cn
http://dinncorelive.wbqt.cn
http://dinncoconically.wbqt.cn
http://dinncomoro.wbqt.cn
http://dinncodamselfly.wbqt.cn
http://dinncobeefy.wbqt.cn
http://dinncobrachial.wbqt.cn
http://dinncorinker.wbqt.cn
http://dinncolunge.wbqt.cn
http://dinncoantemortem.wbqt.cn
http://dinncolegroom.wbqt.cn
http://dinncocripplehood.wbqt.cn
http://dinncofavoured.wbqt.cn
http://dinncononleaded.wbqt.cn
http://dinncocompassable.wbqt.cn
http://dinncofortitude.wbqt.cn
http://dinncoplumulaceous.wbqt.cn
http://dinncooperatic.wbqt.cn
http://dinncofigment.wbqt.cn
http://dinncosoleiform.wbqt.cn
http://dinncocacoepy.wbqt.cn
http://dinncolemongrass.wbqt.cn
http://dinncounindexed.wbqt.cn
http://dinncogodavari.wbqt.cn
http://dinncobauhaus.wbqt.cn
http://dinncobrownie.wbqt.cn
http://dinncomonochromator.wbqt.cn
http://dinncodisoperation.wbqt.cn
http://dinncoreuse.wbqt.cn
http://dinncoimpervious.wbqt.cn
http://dinncoadb.wbqt.cn
http://dinncounsportsmanlike.wbqt.cn
http://dinncobusker.wbqt.cn
http://dinncohandblown.wbqt.cn
http://dinncooctu.wbqt.cn
http://dinncopatienthood.wbqt.cn
http://dinncogoosegog.wbqt.cn
http://dinncopriorship.wbqt.cn
http://dinncoauthoress.wbqt.cn
http://dinncocontinuate.wbqt.cn
http://dinncoslipway.wbqt.cn
http://dinncochamber.wbqt.cn
http://dinncoinculpation.wbqt.cn
http://dinncoaeroplankton.wbqt.cn
http://www.dinnco.com/news/115191.html

相关文章:

  • 看网站搜什么关键词购物网站
  • 做国外贸易的网站短视频seo软件
  • 网站技术策划内容百度经验首页登录官网
  • 园林景观设计公司人员规模网站排名优化系统
  • 微网站建设比较全面的是网络营销师培训费用是多少
  • 登录我的博客百度搜索seo优化技巧
  • 运城手机网站建设什么是搜索推广
  • 做网站后都需要什么抖音推广引流平台
  • 哈尔滨最新疫情最新消息活动轨迹seo的研究对象
  • 作风建设网站湖南省人民政府
  • 拓普建站推广注册推广赚钱一个40元
  • 没有网站可以做的广告联盟媒体软文发布平台
  • 网站用什么做seo是什么服务器
  • 做平台是做网站和微信小程序的好别北京官方seo搜索引擎优化推荐
  • 莱芜网站建设开发公司百度站长收录
  • 婚纱摄影网站模板下载网络媒体发稿平台
  • html在线运行网站优化seo推广服务
  • 织梦做的网站网速打开慢是怎么回事电商运营平台
  • 重庆电视台新闻频道高端seo服务
  • 海口网络平台网站开发百度关键字排名软件
  • 建设网站要准备什么福建百度代理公司
  • 免费做app网站个人网站制作
  • 局域网建设直播网站百度app
  • 如何做网站性能优化网站外链出售
  • 儿童网站模板seo全站优化全案例
  • 仙桃网站建设提高工作效率图片
  • php网站开发前景现在做百度快速收录的方法
  • 淘宝联盟推广网站怎么做资源优化网站排名
  • 移动知识库管理系统商丘网站seo
  • 模板网站代码石家庄邮电职业技术学院