Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

shishi_ap_authenticator_cksumraw_set(3) [debian man page]

shishi_ap_authenticator_cksumraw_set(3) 			      shishi				   shishi_ap_authenticator_cksumraw_set(3)

NAME
shishi_ap_authenticator_cksumraw_set - API function SYNOPSIS
#include <shishi.h> void shishi_ap_authenticator_cksumraw_set(Shishi_ap * ap, int32_t authenticatorcksumtype, const char * authenticatorcksumraw, size_t authenticatorcksumrawlen); ARGUMENTS
Shishi_ap * ap structure that holds information about AP exchange int32_t authenticatorcksumtype authenticator checksum type to set in AP. const char * authenticatorcksumraw input array with authenticator checksum field value to set in Authenticator in AP-REQ. size_t authenticatorcksumrawlen length of input array with authenticator checksum field value to set in Authenticator in AP-REQ. DESCRIPTION
Set the Authenticator Checksum Data in the AP exchange. This is the actual checksum field, not data to compute checksum on and then store in the checksum field. See also shishi_ap_authenticator_cksumdata_set. REPORTING BUGS
Report bugs to <bug-shishi@gnu.org>. COPYRIGHT
Copyright (C) 2002-2010 Simon Josefsson. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. SEE ALSO
The full documentation for shishi is maintained as a Texinfo manual. If the info and shishi programs are properly installed at your site, the command info shishi should give you access to the complete manual. shishi 1.0.1 shishi_ap_authenticator_cksumraw_set(3)

Check Out this Related Man Page

shishi_ap_set_tktoptionsraw(3)					      shishi					    shishi_ap_set_tktoptionsraw(3)

NAME
shishi_ap_set_tktoptionsraw - API function SYNOPSIS
#include <shishi.h> int shishi_ap_set_tktoptionsraw(Shishi_ap * ap, Shishi_tkt * tkt, int options, int32_t cksumtype, const char * data, size_t len); ARGUMENTS
Shishi_ap * ap structure that holds information about AP exchange Shishi_tkt * tkt ticket to set in AP. int options AP-REQ options to set in AP. int32_t cksumtype authenticator checksum type to set in AP. const char * data input array with data to store in checksum field in Authenticator. size_t len length of input array with data to store in checksum field in Authenticator. DESCRIPTION
Set the ticket (see shishi_ap_tkt_set()) and set the AP-REQ apoptions (see shishi_apreq_options_set()) and set the raw Authenticator check- sum data. RETURN VALUE
Returns SHISHI_OK iff successful. REPORTING BUGS
Report bugs to <bug-shishi@gnu.org>. COPYRIGHT
Copyright (C) 2002-2010 Simon Josefsson. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. SEE ALSO
The full documentation for shishi is maintained as a Texinfo manual. If the info and shishi programs are properly installed at your site, the command info shishi should give you access to the complete manual. shishi 1.0.1 shishi_ap_set_tktoptionsraw(3)
Man Page

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

directory checksum error

Display warnning:directory checksum error in the end of Decompress the bag (0 Replies)
Discussion started by: renrongwen
0 Replies

2. Filesystems, Disks and Memory

Directory is Same but Checksum is different

Hello, I am performing a checksum on our software we have installed on a unix solaris 2.0 os. If the checksum generated report is not the same as a 'Gold' report we have on disk. Then our software is deleted, and reinstalled. The problem I am having is if you run the program again, the... (3 Replies)
Discussion started by: JustinPyfrom
3 Replies

3. Programming

Disabling IP Checksum Calculation

Hello Friends, I'm constructing the IP Packets by using the RAW Sockets. If I give any value for VER/TTL/Protocol the packet is being transmitted with that particular values. But in case of IP Checksum, I'm always getting the correct checksum value irrespective of the value I give. Can anyone... (5 Replies)
Discussion started by: aamirglb
5 Replies

4. UNIX for Dummies Questions & Answers

read a .bin through terminal and output a checksum?

Hi all, Ive been given a .bin file that I want to do a checksum on to make sure that it is consistant with what I know should be the checksum. I have tried using md5sum but it spits out a 128 bit line rather than a 32 bit line, which is what I want. Can someone help set me off in the right... (7 Replies)
Discussion started by: TeamUSA
7 Replies

5. Shell Programming and Scripting

Problems restraining read command to 32 bits -perl

Hey everybody, I'm having difficulty using the read command to perform a checksum operation. Whenever I print the final checksum, the result always returns FFFFFFFF, and I know thats not the checksum. #!/usr/bin/perl -w use strict; use FileHandle; use warnings; my $data... (0 Replies)
Discussion started by: TeamUSA
0 Replies

6. Shell Programming and Scripting

Extracting the checksum

I wanted a script that can give the checksum of a particular zipped file. Can somebody help me in writing a shell script in getting the checksum of a particular tar file. (1 Reply)
Discussion started by: vkca
1 Replies

7. SCO

SCO 6.0 new install checksum errors

Updating from an old server with 5.01 to a new server with Openserver 6.0 After getting the hardware sorted out ( raid - too bad its not a bug killer ) I installed OS 6.0 from the distribution cd . All went well . Before loading MP4 I ran the software manager to verify the software and verify... (5 Replies)
Discussion started by: bigbug
5 Replies

8. Shell Programming and Scripting

Script to get checksum of itself

is there a way to get a script to do a checksum on itself? something like this: #!/bin/sh myexpectedsig=$(cksum $0 | awk '{print $1}') if ; then exit else who uptime date fi im looking for something that would always represent the running script, which is why im... (6 Replies)
Discussion started by: SkySmart
6 Replies