OpenCoverage

c_ofb64.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/libressl/src/crypto/cast/c_ofb64.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3-
4-
5-
6void CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out,-
7 long length, const CAST_KEY *schedule, unsigned char *ivec,-
8 int *num)-
9 {-
10 unsigned int v0,v1,t;-
11 int n= *num;-
12 long l=length;-
13 unsigned char d[8];-
14 char *dp;-
15 unsigned int ti[2];-
16 unsigned char *iv;-
17 int save=0;-
18-
19 iv=ivec;-
20 (v0 =((unsigned long)(*((iv)++)))<<24L, v0|=((unsigned long)(*((iv)++)))<<16L, v0|=((unsigned long)(*((iv)++)))<< 8L, v0|=((unsigned long)(*((iv)++))));-
21 (v1 =((unsigned long)(*((iv)++)))<<24L, v1|=((unsigned long)(*((iv)++)))<<16L, v1|=((unsigned long)(*((iv)++)))<< 8L, v1|=((unsigned long)(*((iv)++))));-
22 ti[0]=v0;-
23 ti[1]=v1;-
24 dp=(char *)d;-
25 (*((dp)++)=(unsigned char)(((v0)>>24L)&0xff), *((dp)++)=(unsigned char)(((v0)>>16L)&0xff), *((dp)++)=(unsigned char)(((v0)>> 8L)&0xff), *((dp)++)=(unsigned char)(((v0) )&0xff));-
26 (*((dp)++)=(unsigned char)(((v1)>>24L)&0xff), *((dp)++)=(unsigned char)(((v1)>>16L)&0xff), *((dp)++)=(unsigned char)(((v1)>> 8L)&0xff), *((dp)++)=(unsigned char)(((v1) )&0xff));-
27 while (l--
l--Description
TRUEevaluated 3552 times by 1 test
Evaluated by:
  • libcrypto.so.44.0.1
FALSEevaluated 4 times by 1 test
Evaluated by:
  • libcrypto.so.44.0.1
)
4-3552
28 {-
29 if (n == 0
n == 0Description
TRUEevaluated 444 times by 1 test
Evaluated by:
  • libcrypto.so.44.0.1
FALSEevaluated 3108 times by 1 test
Evaluated by:
  • libcrypto.so.44.0.1
)
444-3108
30 {-
31 CAST_encrypt((unsigned int *)ti,schedule);-
32 dp=(char *)d;-
33 t=ti[0]; (*((dp)++)=(unsigned char)(((t)>>24L)&0xff), *((dp)++)=(unsigned char)(((t)>>16L)&0xff), *((dp)++)=(unsigned char)(((t)>> 8L)&0xff), *((dp)++)=(unsigned char)(((t) )&0xff));-
34 t=ti[1]; (*((dp)++)=(unsigned char)(((t)>>24L)&0xff), *((dp)++)=(unsigned char)(((t)>>16L)&0xff), *((dp)++)=(unsigned char)(((t)>> 8L)&0xff), *((dp)++)=(unsigned char)(((t) )&0xff));-
35 save++;-
36 }
executed 444 times by 1 test: end of block
Executed by:
  • libcrypto.so.44.0.1
444
37 *(out++)= *(in++)^d[n];-
38 n=(n+1)&0x07;-
39 }
executed 3552 times by 1 test: end of block
Executed by:
  • libcrypto.so.44.0.1
3552
40 if (save
saveDescription
TRUEevaluated 4 times by 1 test
Evaluated by:
  • libcrypto.so.44.0.1
FALSEnever evaluated
)
0-4
41 {-
42 v0=ti[0];-
43 v1=ti[1];-
44 iv=ivec;-
45 (*((iv)++)=(unsigned char)(((v0)>>24L)&0xff), *((iv)++)=(unsigned char)(((v0)>>16L)&0xff), *((iv)++)=(unsigned char)(((v0)>> 8L)&0xff), *((iv)++)=(unsigned char)(((v0) )&0xff));-
46 (*((iv)++)=(unsigned char)(((v1)>>24L)&0xff), *((iv)++)=(unsigned char)(((v1)>>16L)&0xff), *((iv)++)=(unsigned char)(((v1)>> 8L)&0xff), *((iv)++)=(unsigned char)(((v1) )&0xff));-
47 }
executed 4 times by 1 test: end of block
Executed by:
  • libcrypto.so.44.0.1
4
48 t=v0=v1=ti[0]=ti[1]=0;-
49 *num=n;-
50 }
executed 4 times by 1 test: end of block
Executed by:
  • libcrypto.so.44.0.1
4
Switch to Source codePreprocessed file

Generated by Squish Coco 4.2.2