]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/bn/bn.h
Further comment changes for reformat (master)
[thirdparty/openssl.git] / crypto / bn / bn.h
index 7ba9beeb0955bad0a00ab9c99f15b1fbd8752e36..24433581fb52baf99e67ead7e7efb7c0e883807a 100644 (file)
@@ -574,7 +574,8 @@ int BN_GF2m_mod_sqrt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
 int    BN_GF2m_mod_solve_quad(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
        BN_CTX *ctx); /* r^2 + r = a mod p */
 #define BN_GF2m_cmp(a, b) BN_ucmp((a), (b))
-/* Some functions allow for representation of the irreducible polynomials
+/*-
+ * Some functions allow for representation of the irreducible polynomials
  * as an unsigned int[], say p.  The irreducible f(t) is then of the form:
  *     t^p[0] + t^p[1] + ... + t^p[k]
  * where m = p[0] > p[1] > ... > p[k] = 0.