aboutsummaryrefslogtreecommitdiff
path: root/gf28.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gf28.cpp')
-rw-r--r--gf28.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gf28.cpp b/gf28.cpp
index 61f47b1..9513818 100644
--- a/gf28.cpp
+++ b/gf28.cpp
@@ -28,10 +28,10 @@ uint8_t GF28::multiply(uint8_t x,uint8_t y){
}
GF28::GF28()
- :value(0){}
+ :value(0){}
GF28::GF28(int v)
- :value(reduce(v,modulus)){}
+ :value(reduce(v,modulus)){}
GF28::operator uint8_t() const {
return value;