aboutsummaryrefslogtreecommitdiff
path: root/gf28.cpp
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-10-12 23:10:29 +0200
committertomsmeding <tom.smeding@gmail.com>2016-10-12 23:10:29 +0200
commit9a337c68ff0ac8c1cd18be2917318f273af7d8a0 (patch)
tree5f774032d13f434e45466071381c9e010e8be680 /gf28.cpp
parentb9fd7bda32613c44bbf11d9c019d0c28e70c4064 (diff)
Comment bigint (and fix indentation in gf28)
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;