X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=shamirs;a=blobdiff_plain;f=shamirssecret.h;h=d1ad37051d2b468cf4d0c85199ffff190b72178e;hp=d84804082e3ecde7e8d5960716f32f75c57ecbff;hb=HEAD;hpb=f76ba5528394212f4b95427c3aaac9a91a8acb1e diff --git a/shamirssecret.h b/shamirssecret.h index d848040..d1ad370 100644 --- a/shamirssecret.h +++ b/shamirssecret.h @@ -3,27 +3,34 @@ * * Copyright (C) 2013 Matt Corallo * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU General Public License, - * version 2, as published by the Free Software Foundation. + * This file is part of ASSS (Audit-friendly Shamir's Secret Sharing) * - * This program is distributed in the hope it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - * more details. + * ASSS is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of + * the License, or (at your option) any later version. * - * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 59 Temple - * Place - Suite 330, Boston, MA 02111-1307 USA. + * ASSS is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with ASSS. If not, see + * . */ +#ifndef IN_KERNEL #include +#else +#include +#endif #define P 256 /** * Calculates the Y coordinate that the point with the given X - * coefficients[0] == secret, the rest are random values + * coefficients[0] == secret, the rest are secure random values */ uint8_t calculateQ(uint8_t coefficients[], uint8_t shares_required, uint8_t x);