parameter with two es. From Peter Postma.
This commit is contained in:
parent
29dc39116b
commit
73e1501b98
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: EVP_BytesToKey.3,v 1.1 2003/07/24 14:16:40 itojun Exp $
|
||||
.\" $NetBSD: EVP_BytesToKey.3,v 1.2 2004/02/24 15:22:01 wiz Exp $
|
||||
.\"
|
||||
.\" Automatically generated by Pod::Man version 1.02
|
||||
.\" Thu Jul 24 13:07:56 2003
|
||||
@ -163,7 +163,7 @@ libcrypto, -lcrypto
|
||||
.IX Header "DESCRIPTION"
|
||||
\&\fIEVP_BytesToKey()\fR derives a key and \s-1IV\s0 from various parameters. \fBtype\fR is
|
||||
the cipher to derive the key and \s-1IV\s0 for. \fBmd\fR is the message digest to use.
|
||||
The \fBsalt\fR paramter is used as a salt in the derivation: it should point to
|
||||
The \fBsalt\fR parameter is used as a salt in the derivation: it should point to
|
||||
an 8 byte buffer or \s-1NULL\s0 if no salt is used. \fBdata\fR is a buffer containing
|
||||
\&\fBdatal\fR bytes which is used to derive the keying data. \fBcount\fR is the
|
||||
iteration count to use. The derived key and \s-1IV\s0 will be written to \fBkey\fR
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $NetBSD: EVP_EncryptInit.3,v 1.13 2003/07/24 14:16:40 itojun Exp $
|
||||
.\" $NetBSD: EVP_EncryptInit.3,v 1.14 2004/02/24 15:22:01 wiz Exp $
|
||||
.\"
|
||||
.\" Automatically generated by Pod::Man version 1.02
|
||||
.\" Thu Jul 24 13:07:56 2003
|
||||
@ -307,7 +307,7 @@ does not remain in memory.
|
||||
.PP
|
||||
\&\fIEVP_EncryptInit()\fR, \fIEVP_DecryptInit()\fR and \fIEVP_CipherInit()\fR behave in a
|
||||
similar way to \fIEVP_EncryptInit_ex()\fR, EVP_DecryptInit_ex and
|
||||
\&\fIEVP_CipherInit_ex()\fR except the \fBctx\fR paramter does not need to be
|
||||
\&\fIEVP_CipherInit_ex()\fR except the \fBctx\fR parameter does not need to be
|
||||
initialized and they always use the default cipher implementation.
|
||||
.PP
|
||||
\&\fIEVP_EncryptFinal()\fR, \fIEVP_DecryptFinal()\fR and \fIEVP_CipherFinal()\fR behave in a
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: altq_cbq.c,v 1.8 2003/11/09 22:11:12 christos Exp $ */
|
||||
/* $NetBSD: altq_cbq.c,v 1.9 2004/02/24 15:22:01 wiz Exp $ */
|
||||
/* $KAME: altq_cbq.c,v 1.11 2002/10/04 14:24:09 kjc Exp $ */
|
||||
|
||||
/*
|
||||
@ -32,7 +32,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: altq_cbq.c,v 1.8 2003/11/09 22:11:12 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: altq_cbq.c,v 1.9 2004/02/24 15:22:01 wiz Exp $");
|
||||
|
||||
#if defined(__FreeBSD__) || defined(__NetBSD__)
|
||||
#include "opt_altq.h"
|
||||
@ -193,7 +193,7 @@ cbq_modify_class(acp)
|
||||
* struct rm_class *borrow)
|
||||
*
|
||||
* This function create a new traffic class in the CBQ class hierarchy of
|
||||
* given paramters. The class that created is either the root, default,
|
||||
* given parameters. The class that created is either the root, default,
|
||||
* or a new dynamic class. If CBQ is not initilaized, the the root class
|
||||
* will be created.
|
||||
*/
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: grf_rhreg.h,v 1.12 2003/11/10 08:51:51 wiz Exp $ */
|
||||
/* $NetBSD: grf_rhreg.h,v 1.13 2004/02/24 15:22:01 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Markus Wild
|
||||
@ -286,7 +286,7 @@ struct MonDef {
|
||||
|
||||
/*
|
||||
* This Routine uses the blitter to perform fast copies
|
||||
* in the text-display. The paramters are:
|
||||
* in the text-display. The parameters are:
|
||||
* xs - source x-coordinate
|
||||
* ys - source y-coordinate
|
||||
* xd - destination x-coordinate
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: exception.S,v 1.24 2004/02/13 11:36:17 wiz Exp $ */
|
||||
/* $NetBSD: exception.S,v 1.25 2004/02/24 15:22:01 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 2002 Wasabi Systems, Inc.
|
||||
@ -1543,7 +1543,7 @@ Lcheck_softint_lower:
|
||||
* cpu_fork() arranges for the following information to be passed to us:
|
||||
*
|
||||
* r10 - The kernel function to invoke before returning to userland
|
||||
* r11 - A single paramter for the kernel function.
|
||||
* r11 - A single parameter for the kernel function.
|
||||
*
|
||||
* The kernel stack already has a valid trapframe, so all we need to do
|
||||
* is return through the normal trap/syscall exit path.
|
||||
|
@ -36,7 +36,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: daic.c,v 1.17 2003/12/04 13:57:30 keihan Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: daic.c,v 1.18 2004/02/24 15:22:01 wiz Exp $");
|
||||
|
||||
/*
|
||||
* daic.c: MI driver for Diehl active ISDN cards (S, SX, SXn, SCOM, QUADRO)
|
||||
@ -782,7 +782,7 @@ daic_assign(
|
||||
struct daic_softc *sc, /* our state and port no */
|
||||
int port,
|
||||
u_int classid, /* Diehl calls this "global instance id" */
|
||||
bus_size_t parmsize, /* sizeof paramter arra */
|
||||
bus_size_t parmsize, /* sizeof parameter arra */
|
||||
const u_int8_t *parms) /* task instance parameters */
|
||||
{
|
||||
static char wchan[] = "daic assign";
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: ahd_pci.c,v 1.12 2003/11/18 21:40:13 briggs Exp $ */
|
||||
/* $NetBSD: ahd_pci.c,v 1.13 2004/02/24 15:22:01 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Product specific probe and attach routines for:
|
||||
@ -49,7 +49,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ahd_pci.c,v 1.12 2003/11/18 21:40:13 briggs Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ahd_pci.c,v 1.13 2004/02/24 15:22:01 wiz Exp $");
|
||||
|
||||
#define AHD_PCI_IOADDR PCI_MAPREG_START /* I/O Address */
|
||||
#define AHD_PCI_MEMADDR (PCI_MAPREG_START + 4) /* Mem I/O Address */
|
||||
@ -1175,7 +1175,7 @@ ahd_aic790X_setup(struct ahd_softc *ahd, struct pci_attach_args *pa)
|
||||
|
||||
|
||||
/*
|
||||
* IO Cell paramter setup.
|
||||
* IO Cell parameter setup.
|
||||
*/
|
||||
AHD_SET_PRECOMP(ahd, AHD_PRECOMP_CUTBACK_29);
|
||||
|
||||
@ -1195,7 +1195,7 @@ ahd_aic790X_setup(struct ahd_softc *ahd, struct pci_attach_args *pa)
|
||||
ahd->bugs |= AHD_INTCOLLISION_BUG|AHD_ABORT_LQI_BUG;
|
||||
|
||||
/*
|
||||
* IO Cell paramter setup.
|
||||
* IO Cell parameter setup.
|
||||
*/
|
||||
AHD_SET_PRECOMP(ahd, AHD_PRECOMP_CUTBACK_29);
|
||||
AHD_SET_SLEWRATE(ahd, AHD_SLEWRATE_DEF_REVB);
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sdvar.h,v 1.20 2003/09/18 00:06:40 mycroft Exp $ */
|
||||
/* $NetBSD: sdvar.h,v 1.21 2004/02/24 15:22:01 wiz Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -106,7 +106,7 @@ struct sd_softc {
|
||||
#endif
|
||||
};
|
||||
|
||||
#define SDGP_RESULT_OK 0 /* paramters obtained */
|
||||
#define SDGP_RESULT_OK 0 /* parameters obtained */
|
||||
#define SDGP_RESULT_OFFLINE 1 /* no media, or otherwise losing */
|
||||
#define SDGP_RESULT_UNFORMATTED 2 /* unformatted media (max params) */
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: ip_state.c,v 1.42 2002/09/19 08:12:54 martti Exp $ */
|
||||
/* $NetBSD: ip_state.c,v 1.43 2004/02/24 15:22:01 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (C) 1995-2002 by Darren Reed.
|
||||
@ -96,7 +96,7 @@
|
||||
#if !defined(lint)
|
||||
#if defined(__NetBSD__)
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ip_state.c,v 1.42 2002/09/19 08:12:54 martti Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ip_state.c,v 1.43 2004/02/24 15:22:01 wiz Exp $");
|
||||
#else
|
||||
static const char sccsid[] = "@(#)ip_state.c 1.8 6/5/96 (C) 1993-2000 Darren Reed";
|
||||
static const char rcsid[] = "@(#)Id: ip_state.c,v 2.30.2.74 2002/07/27 15:58:10 darrenr Exp";
|
||||
@ -952,7 +952,7 @@ tcphdr_t *tcp;
|
||||
* total packet in advance.
|
||||
* We do know the total length from the fragment cache though.
|
||||
* Note however that there might be more sessions with
|
||||
* exactly the same source and destination paramters in the
|
||||
* exactly the same source and destination parameters in the
|
||||
* state cache (and source and destination is the only stuff
|
||||
* that is saved in the fragment cache). Note further that
|
||||
* some TCP connections in the state cache are hashed with
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: ns_pcb.c,v 1.19 2003/08/07 16:33:46 agc Exp $ */
|
||||
/* $NetBSD: ns_pcb.c,v 1.20 2004/02/24 15:22:01 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1984, 1985, 1986, 1987, 1993
|
||||
@ -32,7 +32,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ns_pcb.c,v 1.19 2003/08/07 16:33:46 agc Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ns_pcb.c,v 1.20 2004/02/24 15:22:01 wiz Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -283,7 +283,7 @@ ns_setpeeraddr(nsp, nam)
|
||||
* Pass some notification to all connections of a protocol
|
||||
* associated with address dst. Call the
|
||||
* protocol specific routine to handle each connection.
|
||||
* Also pass an extra paramter via the nspcb. (which may in fact
|
||||
* Also pass an extra parameter via the nspcb. (which may in fact
|
||||
* be a parameter list!)
|
||||
*/
|
||||
void
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: iconv.h,v 1.4 2003/02/16 19:50:48 jdolecek Exp $ */
|
||||
/* $NetBSD: iconv.h,v 1.5 2004/02/24 15:22:01 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000-2001, Boris Popov
|
||||
@ -55,7 +55,7 @@ struct iconv_cspair_info {
|
||||
};
|
||||
|
||||
/*
|
||||
* Paramters for 'add' sysctl
|
||||
* Parameters for 'add' sysctl
|
||||
*/
|
||||
#define ICONV_ADD_VER 1
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: smb_rq.h,v 1.9 2003/04/07 19:35:40 jdolecek Exp $ */
|
||||
/* $NetBSD: smb_rq.h,v 1.10 2004/02/24 15:22:01 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000-2001, Boris Popov
|
||||
@ -119,7 +119,7 @@ struct smb_t2rq {
|
||||
int t2_flags; /* SMBT2_ */
|
||||
struct mbchain t2_tparam; /* parameters to transmit */
|
||||
struct mbchain t2_tdata; /* data to transmit */
|
||||
struct mdchain t2_rparam; /* received paramters */
|
||||
struct mdchain t2_rparam; /* received parameters */
|
||||
struct mdchain t2_rdata; /* received data */
|
||||
struct smb_cred*t2_cred;
|
||||
struct smb_connobj *t2_source;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: ioccom.h,v 1.6 2003/08/07 16:34:05 agc Exp $ */
|
||||
/* $NetBSD: ioccom.h,v 1.7 2004/02/24 15:22:01 wiz Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1982, 1986, 1990, 1993, 1994
|
||||
@ -51,7 +51,7 @@
|
||||
#define IOC_OUT (unsigned long)0x40000000
|
||||
/* copy parameters in */
|
||||
#define IOC_IN (unsigned long)0x80000000
|
||||
/* copy paramters in and out */
|
||||
/* copy parameters in and out */
|
||||
#define IOC_INOUT (IOC_IN|IOC_OUT)
|
||||
/* mask for IN/OUT/VOID */
|
||||
#define IOC_DIRMASK (unsigned long)0xe0000000
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: CHANGES,v 1.3 2001/07/05 08:38:27 toshii Exp $
|
||||
# $NetBSD: CHANGES,v 1.4 2004/02/24 15:22:01 wiz Exp $
|
||||
|
||||
kernel:
|
||||
|
||||
@ -29,7 +29,7 @@ kernel:
|
||||
buffers which are written async. Because the buffer cache does not
|
||||
serve to throttle these writes, and malloced memory is used to hold them,
|
||||
there is a danger of running out of kmem_map. To avoid this, a new
|
||||
compile-time paramter, LFS_THROTTLE, is used as an upper bound for the
|
||||
compile-time parameter, LFS_THROTTLE, is used as an upper bound for the
|
||||
number of partial-segments allowed to be in progress writing at any
|
||||
given time.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user