summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn/bn_kron.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/bn/bn_kron.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/bn/bn_kron.c b/src/lib/libcrypto/bn/bn_kron.c
index 15033ff9db..998adedcd8 100644
--- a/src/lib/libcrypto/bn/bn_kron.c
+++ b/src/lib/libcrypto/bn/bn_kron.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_kron.c,v 1.9 2022/06/20 19:42:58 tb Exp $ */ 1/* $OpenBSD: bn_kron.c,v 1.10 2022/07/12 16:08:19 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -55,9 +55,6 @@
55 55
56#include "bn_lcl.h" 56#include "bn_lcl.h"
57 57
58/* The least significant word of a BIGNUM. */
59#define BN_lsw(n) (((n)->top == 0) ? (BN_ULONG) 0 : (n)->d[0])
60
61/* 58/*
62 * Kronecker symbol, implemented according to Henri Cohen, "A Course in 59 * Kronecker symbol, implemented according to Henri Cohen, "A Course in
63 * Computational Algebraic Number Theory", Algorithm 1.4.10. 60 * Computational Algebraic Number Theory", Algorithm 1.4.10.