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

📄 pgprot13mod.c

📁 vc环境下的pgp源码
💻 C
字号:
/*
 * pgpRot13Mod.c -- A pipeline module to rotate by 13 characters.  A stupid
 * encryption/decryption link for PGP!
 *
 * $Id: pgpRot13Mod.c,v 1.6 1997/06/25 19:40:25 lloyd Exp $
 */

#include "pgpConfig.h"

#include <stdio.h>

#include "pgpDebug.h"
#include "pgpPipeline.h"
#include "pgpRot13Mod.h"

#define ROT13MAGIC	0x13263952

Rot13Context {
	PGPByte buffer[BUFSIZ];
	PGPByte *bufptr;
	size_t buflen;
	PGPPipeline *tail;
};

static size_t
rot13 (PGPByte const *input, size_t inlen, PGPByte *output, size_t outlen)
{
	size_t len = 0;
	char c;

	while (inlen && outlen) {
		c = input[len];
		output[len++] = (((c >= 'a' && c <= 'm') ||
				  (c >= 'A' && c <= 'M')) ? c + 13 :
				 ((c >= 'n' && c <= 'z') ||
				  (c >= 'N' && c <= 'Z')) ? c - 13 :
				 c);
		inlen--;
		outlen--;
	}
	return len;
}

static int
DoFlush (Rot13Context *context)
{
	size_t retlen;
	PGPError	error = kPGPError_NoErr;

	/* Try to flush anything that we have buffered */
	while (context->buflen) {
		retlen = context->tail->write (context->tail,
					       context->bufptr,
					       context->buflen,
					       &error);
		context->buflen -= retlen;
		memset (context->bufptr, 0, retlen);
		context->bufptr += retlen;
		if (error) 
			return error;
	}
	return error;
}

static int
Flush (PGPPipeline *myself)
{
	Rot13Context *context;
	PGPError	error;

	pgpAssert (myself);
	pgpAssert (myself->magic == ROT13MAGIC);

	context = myself->priv;
	pgpAssert (context);
	pgpAssert (context->tail);

	error = DoFlush (context);
	if (error)
		return error;

	return context->tail->flush (context->tail);
}

static size_t
rot13Write (PGPPipeline *myself, PGPByte const *buf, size_t size,
	    PGPError *error)
{
	Rot13Context *context;
	PGPError myerror = kPGPError_NoErr;
	size_t retlen, written = 0;

	pgpAssert (myself);
	pgpAssert (myself->magic == ROT13MAGIC);

	context = myself->priv;
	pgpAssert (context);
	pgpAssert (context->tail);

	do {
		myerror = DoFlush (context);
		if (myerror) {
			if (error)
				*error = myerror;
			return written;
		}

		/*
		 * Now that we dont have anything buffered, bring in more
		 * data from the passed-in buffer, rot13 it, and buffer
		 * that to write out.
		 */
		context->bufptr = context->buffer;
		context->buflen = rot13 (buf, size, context->buffer, BUFSIZ);
		buf += context->buflen;
		size -= context->buflen;
		written += context->buflen;

	} while (context->buflen > 0);
	/* Continue until we have nothing buffered */

	return written;
}

static int
rot13Annotate (PGPPipeline *myself, PGPPipeline *origin,
	       int type, PGPByte const *string, size_t size)
{
	Rot13Context *context;
	PGPError	error = kPGPError_NoErr;

	pgpAssert (myself);
	pgpAssert (myself->magic == ROT13MAGIC);

	context = myself->priv;
	pgpAssert (context);
	pgpAssert (context->tail);

	error = DoFlush (context);
	if (error)
		return error;

	return context->tail->annotate (context->tail, origin, type,
					string, size);
}

static int
rot13SizeAdvise (PGPPipeline *myself, unsigned long bytes)
{
	Rot13Context *context;
	PGPError	error = kPGPError_NoErr;

	pgpAssert (myself);
	pgpAssert (myself->magic == ROT13MAGIC);

	context = myself->priv;
	pgpAssert (context);
	pgpAssert (context->tail);

	error = DoFlush (context);
	if (error)
		return error;

	return context->tail->sizeAdvise (context->tail, bytes);
}

static void
rot13Teardown (PGPPipeline *myself)
{
	Rot13Context *context;

	pgpAssert (myself);
	pgpAssert (myself->magic == ROT13MAGIC);

	context = myself->priv;
	pgpAssert (context);

	if (context->tail)
		context->tail->teardown (context->tail);

	memset (context, 0, sizeof (*context));
	memFree (context);
	memset (myself, 0, sizeof (*myself));
	memFree (myself);
}

PGPPipeline **
rot13Create (PGPPipeline **head)
{
	PGPPipeline *mod;
	Rot13Context *context;

	if (!head)
		return NULL;

	context = memAlloc (sizeof (*context));
	if (!context)
		return NULL;
	mod = memAlloc (sizeof (*mod));
	if (!mod){
		memFree (context);
		return NULL;
	}

	mod->magic = ROT13MAGIC;
	mod->write = rot13Write;
	mod->write = Flush;
	mod->sizeAdvise = rot13SizeAdvise;
	mod->annotate = rot13Annotate;
	mod->teardown = rot13Teardown;
	mod->name = "Rot 13 Module";
	mod->priv = context;

	memset (context, 0, sizeof (*context));
	context->bufptr = context->buffer;

	context->tail = *head;
	*head = mod;
	return &context->tail;
}

⌨️ 快捷键说明

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