Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
bnprint.c
Package: certlib.tar.gz [view]
Upload User: zbbssh
Upload Date: 2007-01-08
Package Size: 196k
Code Size: 1k
Category:
CA program
Development Platform:
C/C++
- /*
- * bnprint.c - Print a bignum, for debugging purposes.
- *
- * Copyright (c) 1995 Colin Plumb. All rights reserved.
- * For licensing and other legal details, see the file legal.c.
- */
- #if HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <stdio.h>
- #if !NO_STRING_H
- #include <string.h>
- #elif HAVE_STRINGS_H
- #include <strings.h>
- #endif
- #include "bn.h"
- #include "bnprint.h"
- #include "kludge.h"
- int
- bnPrint(FILE *f, char const *prefix, struct BigNum const *bn,
- char const *suffix)
- {
- unsigned char temp[32]; /* How much to print on one line */
- unsigned len;
- size_t i;
- if (prefix && fputs(prefix, f) < 0)
- return EOF;
- len = (bnBits(bn) + 7)/ 8;
- if (!len) {
- if (putc('0', f) < 0)
- return EOF;
- } else {
- while (len > sizeof(temp)) {
- len -= sizeof(temp);
- bnExtractBigBytes(bn, temp, len, sizeof(temp));
- for (i = 0; i < sizeof(temp); i++)
- if (fprintf(f, "%02X", temp[i]) < 0)
- return EOF;
- if (putc('\', f) < 0 || putc('n', f) < 0)
- return EOF;
- if (prefix) {
- i = strlen(prefix);
- while (i--)
- if (putc(' ', f) < 0)
- return EOF;
- }
- }
- bnExtractBigBytes(bn, temp, 0, len);
- for (i = 0; i < len; i++)
- if (fprintf(f, "%02X", temp[i]) < 0)
- return EOF;
- }
- return suffix ? fputs(suffix, f) : 0;
- }