This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
pqcrypto
mirror of
https://github.com/henrydcase/pqc.git
Watch
1
Star
1
Fork
0
Code
Issues
1
Releases
2
Wiki
Activity
Browse Source
negative return code
tags/v0.0.1
John M. Schanck
4 years ago
committed by
Kris Kwiatkowski
parent
2f05de259d
commit
84005fd23a
12 changed files
with
12 additions
and
12 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
crypto_kem/hqc-128/avx2/kem.c
+1
-1
crypto_kem/hqc-128/clean/kem.c
+1
-1
crypto_kem/hqc-192/avx2/kem.c
+1
-1
crypto_kem/hqc-192/clean/kem.c
+1
-1
crypto_kem/hqc-256/avx2/kem.c
+1
-1
crypto_kem/hqc-256/clean/kem.c
+1
-1
crypto_kem/hqc-rmrs-128/avx2/kem.c
+1
-1
crypto_kem/hqc-rmrs-128/clean/kem.c
+1
-1
crypto_kem/hqc-rmrs-192/avx2/kem.c
+1
-1
crypto_kem/hqc-rmrs-192/clean/kem.c
+1
-1
crypto_kem/hqc-rmrs-256/avx2/kem.c
+1
-1
crypto_kem/hqc-rmrs-256/clean/kem.c
+ 1
- 1
crypto_kem/hqc-128/avx2/kem.c
View File
@@ -136,5 +136,5 @@ int PQCLEAN_HQC128_AVX2_crypto_kem_dec(unsigned char *ss, const unsigned char *c
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-128/clean/kem.c
View File
@@ -140,5 +140,5 @@ int PQCLEAN_HQC128_CLEAN_crypto_kem_dec(unsigned char *ss, const unsigned char *
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-192/avx2/kem.c
View File
@@ -136,5 +136,5 @@ int PQCLEAN_HQC192_AVX2_crypto_kem_dec(unsigned char *ss, const unsigned char *c
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-192/clean/kem.c
View File
@@ -140,5 +140,5 @@ int PQCLEAN_HQC192_CLEAN_crypto_kem_dec(unsigned char *ss, const unsigned char *
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-256/avx2/kem.c
View File
@@ -136,5 +136,5 @@ int PQCLEAN_HQC256_AVX2_crypto_kem_dec(unsigned char *ss, const unsigned char *c
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-256/clean/kem.c
View File
@@ -140,5 +140,5 @@ int PQCLEAN_HQC256_CLEAN_crypto_kem_dec(unsigned char *ss, const unsigned char *
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-rmrs-128/avx2/kem.c
View File
@@ -136,5 +136,5 @@ int PQCLEAN_HQCRMRS128_AVX2_crypto_kem_dec(unsigned char *ss, const unsigned cha
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-rmrs-128/clean/kem.c
View File
@@ -136,5 +136,5 @@ int PQCLEAN_HQCRMRS128_CLEAN_crypto_kem_dec(unsigned char *ss, const unsigned ch
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-rmrs-192/avx2/kem.c
View File
@@ -136,5 +136,5 @@ int PQCLEAN_HQCRMRS192_AVX2_crypto_kem_dec(unsigned char *ss, const unsigned cha
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-rmrs-192/clean/kem.c
View File
@@ -136,5 +136,5 @@ int PQCLEAN_HQCRMRS192_CLEAN_crypto_kem_dec(unsigned char *ss, const unsigned ch
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-rmrs-256/avx2/kem.c
View File
@@ -136,5 +136,5 @@ int PQCLEAN_HQCRMRS256_AVX2_crypto_kem_dec(unsigned char *ss, const unsigned cha
}
return result & 1;
return
-(
result & 1
)
;
}
+ 1
- 1
crypto_kem/hqc-rmrs-256/clean/kem.c
View File
@@ -136,5 +136,5 @@ int PQCLEAN_HQCRMRS256_CLEAN_crypto_kem_dec(unsigned char *ss, const unsigned ch
}
return result & 1;
return
-(
result & 1
)
;
}
Write
Preview
Loading…
Cancel
Save