Skip to content

Commit d10c32c

Browse files
vegardharshimogalapalli
authored andcommitted
lib/crypto/mpi/mpi-bit.c: export mpi_set_bit
This is used by the 'rsa_generic' module. Signed-off-by: Vegard Nossum <[email protected]>
1 parent f4cd557 commit d10c32c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/crypto/mpi/mpi-bit.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ int mpi_set_bit(MPI a, unsigned int n)
9595
a->d[limbno] |= (A_LIMB_1<<bitno);
9696
return 0;
9797
}
98+
EXPORT_SYMBOL_GPL(mpi_set_bit);
9899

99100
/*
100101
* Shift A by N bits to the right.

0 commit comments

Comments
 (0)