]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - bigint/bigint_adjust.S
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / bigint / bigint_adjust.S
index 56ff2a1e5c655953064bc7e3cf1f5912608d6b15..b5079b72a2a3fa52c8e620eb8ee8a6ea4c5cc2e1 100644 (file)
@@ -1,7 +1,7 @@
 /* bigint_adjust.S */
 /*
     This file is part of the ARM-Crypto-Lib.
-    Copyright (C) 2006-2010 Daniel Otte (daniel.otte@rub.de)
+    Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@
 */
 
 /*
-void bigint_adjust(bigint_ta){
+void bigint_adjust(bigint_t *a){
        while(a->length_B!=0 && a->wordv[a->length_B-1]==0){
                a->length_B--;
        }
@@ -76,7 +76,7 @@ bigint_adjust_ret:
        ret
 
 /*
-void bigint_copy(bigint_t* dest, const bigint_t* src){
+void bigint_copy(bigint_t *dest, const bigint_t *src){
        memcpy(dest->wordv, src->wordv, src->length_B);
        dest->length_B = src->length_B;
        dest->info = src->info;