⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pemdecode.c

📁 这是一个同样来自贝尔实验室的和UNIX有着渊源的操作系统, 其简洁的设计和实现易于我们学习和理解
💻 C
字号:
#include <u.h>#include <libc.h>#include <bio.h>#include <mp.h>#include <libsec.h>voidusage(void){	fprint(2, "auth/pemdecode section [file]\n");	exits("usage");}voidmain(int argc, char **argv){	char *buf;	uchar *bin;	int fd;	long n, tot;	int len;	char *tag, *file;	ARGBEGIN{	default:		usage();	}ARGEND	if(argc != 1 && argc != 2)		usage();	tag = argv[0];	if(argc == 2)		file = argv[1];	else		file = "#d/0";	if((fd = open(file, OREAD)) < 0)		sysfatal("open %s: %r", file);	buf = nil;	tot = 0;	for(;;){		buf = realloc(buf, tot+8192);		if(buf == nil)			sysfatal("realloc: %r");		if((n = read(fd, buf+tot, 8192)) < 0)			sysfatal("read: %r");		if(n == 0)			break;		tot += n;	}	buf[tot] = 0;	bin = decodePEM(buf, tag, &len, nil);	if(bin == nil)		sysfatal("cannot extract section '%s' from pem", tag);	if((n=write(1, bin, len)) != len)		sysfatal("writing %d bytes got %ld: %r", len, n);	exits(0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -