代码搜索:Sign
找到约 10,000 项符合「Sign」的源代码
代码结果 10,000
www.eeworm.com/read/238768/4609584
pod pkcs7_sign.pod
=pod
=head1 NAME
PKCS7_sign - create a PKCS#7 signedData structure
=head1 SYNOPSIS
PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs, BIO *data, int flags);
=head1 DESCRIPTI
www.eeworm.com/read/238768/4609673
pod dsa_do_sign.pod
=pod
=head1 NAME
DSA_do_sign, DSA_do_verify - raw DSA signature operations
=head1 SYNOPSIS
#include
DSA_SIG *DSA_do_sign(const unsigned char *dgst, int dlen, DSA *dsa);
int DS
www.eeworm.com/read/237181/4630087
c ecc_sign_hash.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/237181/4630100
c dsa_sign_hash.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/237181/4630160
c rsa_sign_hash.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/233448/4678845
f90 intrinsic_sign.f90
! Program to test SIGN intrinsic
program intrinsic_sign
implicit none
integer i, j
real r, s
i = 2
j = 3
if (sign (i, j) .ne. 2) call abort
i = 4
j = -5
if (sign (i, j) .ne
www.eeworm.com/read/233448/4681813
c bf-sign-2.c
/*
This test checks promotion of bitfields. Bitfields should be promoted
very much like chars and shorts:
Bitfields (signed or unsigned) should be promoted to signed int if their
value will fi
www.eeworm.com/read/233448/4682262
c bf-sign-1.c
main ()
{
struct {
signed int s:3;
unsigned int u:3;
int i:3;
} x = {-1, -1, -1};
if (x.u != 7)
abort ();
if (x.s != - 1)
abort ();
if (x.i != -1 && x.i != 7)
abor
www.eeworm.com/read/233448/4683935
c wno-pointer-sign.c
/* { dg-do compile } */
/* { dg-options "-Wno-pointer-sign" } */
void f1(long *);
void f2(unsigned long *);
int main()
{
long *lp;
unsigned long *ulp;
char *cp;
unsigned char *ucp;
signed
www.eeworm.com/read/229812/4745861
c ifi2sign.c
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Res