利用GMSSL中ZUC算法实现对序列密码的结构性检测(代码)
利⽤GMSSL中ZUC算法实现对序列密码的结构性检测(代码)cephes.c
#include <stdio.h>
#include <math.h>
#include "cephes.h"
static const double    rel_error = 1E-12;
double MACHEP = 1.11022302462515654042E-16;        // 2**-53
double MAXLOG = 7.09782712893383996732224E2;    // log(MAXNUM)
double MAXNUM = 1.7976931348623158E308;            // 2**1024*(1-MACHEP)
double PI    = 3.14159265358979323846;            // pi, duh!
static double big = 4.503599627370496e15;
static double biginv =  2.22044604925031308085e-16;
int sgngam = 0;
double
cephes_igamc(double a, double x)
{
double ans, ax, c, yc, r, t, y, z;
double pk, pkm1, pkm2, qk, qkm1, qkm2;
if ( (x <= 0) || ( a <= 0) )
return( 1.0 );
if ( (x < 1.0) || (x < a) )
return( 1.e0 - cephes_igam(a,x) );
ax = a * log(x) - x - cephes_lgam(a);
if ( ax < -MAXLOG ) {
printf("igamc: UNDERFLOW\n");
return0.0;
}
ax = exp(ax);
/* continued fraction */
高考分数查询入口
y = 1.0 - a;
z = x + y + 1.0;
c = 0.0;
pkm2 = 1.0;
qkm2 = x;
pkm1 = x + 1.0;
qkm1 = z * x;
ans = pkm1/qkm1;
do {
c += 1.0;
y += 1.0;
z += 2.0;
yc = y * c;
pk = pkm1 * z  -  pkm2 * yc;
qk = qkm1 * z  -  qkm2 * yc;
if ( qk != 0 ) {
r = pk/qk;
t = fabs( (ans - r)/r );
ans = r;
}
else
t = 1.0;
pkm2 = pkm1;
pkm1 = pk;
qkm2 = qkm1;
qkm1 = qk;
if ( fabs(pk) > big ) {
pkm2 *= biginv;
pkm1 *= biginv;
qkm2 *= biginv;
qkm1 *= biginv;
}
} while ( t > MACHEP );
return ans*ax;
}
double
cephes_igam(double a, double x)
{
double ans, ax, c, r;
if ( (x <= 0) || ( a <= 0) )
return0.0;
if ( (x > 1.0) && (x > a ) )
return1.e0 - cephes_igamc(a,x);
/* Compute  x**a * exp(-x) / gamma(a)  */
ax = a * log(x) - x - cephes_lgam(a);
if ( ax < -MAXLOG ) {
printf("igam: UNDERFLOW\n");
return0.0;
}
ax = exp(ax);
/* power series */
r = a;
c = 1.0;
ans = 1.0;
do {
r += 1.0;
c *= x/r;
ans += c;
} while ( c/ans > MACHEP );
return ans * ax/a;
}
/* A[]: Stirling's formula expansion of log gamma
* B[], C[]: log gamma function between 2 and 3
*/
static unsigned short A[] = {
0x6661,0x2733,0x9850,0x3f4a,
0xe943,0xb580,0x7fbd,0xbf43,
0x5ebb,0x20dc,0x019f,0x3f4a,
0xa5a1,0x16b0,0xc16c,0xbf66,
0x554b,0x5555,0x5555,0x3fb5
};
static unsigned short B[] = {
0x6761,0x8ff3,0x8901,0xc095,
0xb93e,0x355b,0xf234,0xc0e2,
0x89e5,0xf890,0x3d73,0xc114,
0xdb51,0xf994,0xbc82,0xc131,
0xf20b,0x0219,0x4589,0xc13a,
0x055e,0x5418,0x0c67,0xc12a
};
static unsigned short C[] = {
/*0x0000,0x0000,0x0000,0x3ff0,*/
0x12b2,0x1cf3,0xfd0d,0xc075,
0xd757,0x7b89,0xaa0d,0xc0d0,
0x4c9b,0xb974,0xeb84,0xc10a,
0x0043,0x7195,0x6286,0xc131,
0xf34c,0x892f,0x5255,0xc143,
0xe14a,0x6a11,0xce4b,0xc13e
};
#define MAXLGM 2.556348e305
/* Logarithm of gamma function */
double
cephes_lgam(double x)
{
double    p, q, u, w, z;
int        i;
sgngam = 1;
if ( x < -34.0 ) {
q = -x;
w = cephes_lgam(q); /* note this modifies sgngam! */        p = floor(q);
if ( p == q ) {
lgsing:
goto loverf;
}
i = (int)p;
if ( (i & 1) == 0 )
sgngam = -1;
else
sgngam = 1;
z = q - p;
if ( z > 0.5 ) {
p += 1.0;
z = p - q;
}
z = q * sin( PI * z );
if ( z == 0.0 )
goto lgsing;
/*      z = log(PI) - log( z ) - w;*/
z = log(PI) - log( z ) - w;
return z;
}
if ( x < 13.0 ) {
z = 1.0;
p = 0.0;
u = x;
while ( u >= 3.0 ) {
p -= 1.0;
u = x + p;
z *= u;
}
while ( u < 2.0 ) {
if ( u == 0.0 )
goto lgsing;
z /= u;
p += 1.0;
u = x + p;
}
if ( z < 0.0 ) {
sgngam = -1;
z = -z;
}
else
sgngam = 1;
if ( u == 2.0 )
return( log(z) );
p -= 2.0;
x = x + p;
p = x * cephes_polevl( x, (double *)B, 5 ) / cephes_p1evl( x, (double *)C, 6);
return log(z) + p;
}
if ( x > MAXLGM ) {
loverf:
printf("lgam: OVERFLOW\n");
return sgngam * MAXNUM;
}
q = ( x - 0.5 ) * log(x) - x + log( sqrt( 2*PI ) );
if ( x > 1.0e8 )
return q;
p = 1.0/(x*x);
if ( x >= 1000.0 )
q += ((  7.9365079365079365079365e-4 * p
- 2.7777777777777777777778e-3) *p
+ 0.0833333333333333333333) / x;
else
q += cephes_polevl( p, (double *)A, 4 ) / x;
return q;
}
double
cephes_polevl(double x, double *coef, int N)
{
double    ans;
int        i;
double    *p;
p = coef;
ans = *p++;
i = N;
do
ans = ans * x  +  *p++;
while ( --i );
return ans;
}
double
cephes_p1evl(double x, double *coef, int N)
{
ipad充电慢是什么原因
double    ans;
double    *p;
int        i;
p = coef;
ans = x + *p++;
i = N-1;
do
ans = ans * x  + *p++;
while ( --i );
return ans;
}
cephes.h
#ifndef CEPHES_H_INCLUDED
#define CEPHES_H_INCLUDED
#endif // CEPHES_H_INCLUDED
#ifndef _CEPHES_H_
#define _CEPHES_H_
//#include "erf.h"
大型网游游戏排行榜double cephes_igamc(double a, double x);
double cephes_igam(double a, double x);
double cephes_lgam(double x);
double cephes_p1evl(double x, double *coef, int N); double cephes_polevl(double x, double *coef, int N); double cephes_erf(double x);
double cephes_erfc(double x);
double cephes_normal(double x);
#endif /*  _CEPHES_H_  */
main.c
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include "zuc_spec.h"
#include <time.h>
#include "cephes.h"
unsigned char table[256]=
{
0,1,1,2,1,2,2,3,
1,2,2,3,2,3,3,4,
1,2,2,3,2,3,3,4,
2,3,3,4,3,4,4,5,
1,2,2,3,2,3,3,4,
2,3,3,4,3,4,4,5,
2,3,3,4,3,4,4,5,
3,4,4,5,4,5,5,6,
1,2,2,3,2,3,3,4,
2,3,3,4,3,4,4,5,
2,3,3,4,3,4,4,5,
3,4,4,5,4,5,5,6,
2,3,3,4,3,4,4,5,
3,4,4,5,4,5,5,6,
3,4,4,5,4,5,5,6,
4,5,5,6,5,6,6,7,
1,2,2,3,2,3,3,4,
单身证明范本
2,3,3,4,3,4,4,5,
2,3,3,4,3,4,4,5,
3,4,4,5,4,5,5,6,
2,3,3,4,3,4,4,5,
3,4,4,5,4,5,5,6,
3,4,4,5,4,5,5,6,
4,5,5,6,5,6,6,7,
2,3,3,4,3,4,4,5,
3,4,4,5,4,5,5,6,
3,4,4,5,4,5,5,6,
4,5,5,6,5,6,6,7,
3,4,4,5,4,5,5,6,
4,5,5,6,5,6,6,7,
4,5,5,6,5,6,6,7,
5,6,6,7,6,7,7,8
};
double PI_128[5]= {0.165467,0.230036,0.208994,0.230036,0.165467};
int main()
{
srand(time(NULL));
int i,j,w;
int v[5]= {0};
double obs=0;
double p_value=0;
u8 key[16],iv[16],D[16];
u32 keystream[4];
for(i=0; i<16; i++)
iv[i]=rand()%256;
for(i=0; i<1048576; i++)
{
for(j=0; j<16; j++)
key[j]=rand()%256;
ZUC(key,iv,keystream,4);
w=0;
for(j=0; j<16; j++)
{
D[j]=(keystream[j/4]>>((3-(j%4))*8))^key[j];
w+=table[D[j]];
}
if(w>=0 && w<=58)
v[0]++;
else if(w>=59 && w<=62)
v[1]++;
else if(w>=63 && w<=65)
v[2]++;
else if(w>=66 && w<=69)
v[3]++;
else if(w>=70 && w<=128)
共享打印机无法连接v[4]++;
}
for(i=0; i<5; i++)
{
printf("\n第%d组的频数为%d,概率为%lf\n",i+1,v[i],PI_128[i]);
obs+=((v[i]-1048576*PI_128[i])*(v[i]-1048576*PI_128[i]))/(1048576*PI_128[i]);
}
p_value=cephes_igamc(2,obs/2);
printf("运⾏结果:\n");
printf("卡⽅分布值为%lf  ",obs);
printf("p_value:%lf\n",p_value);
if(p_value>0.01)
{
printf("Pass");
return 1;
}
else
{
printf("Fail\n");
return 0;
磐安旅游
}
}
zuc_spec.c
/* ==================================================================== * Copyright (c) 2015 - 2018 The GmSSL Project.  All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
*    notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
*    notice, this list of conditions and the following disclaimer in
*    the documentation and/or other materials provided with the
*    distribution.
*
* 3. All advertising materials mentioning features or use of this
*    software must display the following acknowledgment:
*    "This product includes software developed by the GmSSL Project.
*    (/)"
*
* 4. The name "GmSSL Project" must not be used to endorse or promote
*    products derived from this software without prior written

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。