LibCrypto+LibJS: Remove {Signed,Unsigned}BigInteger to_base_deprecated

Use `to_base` instead.
This commit is contained in:
devgianlu
2025-04-21 12:13:50 +02:00
committed by Jelle Raaijmakers
parent ac16008d09
commit a019efb24b
Notes: github-actions[bot] 2025-04-28 10:07:28 +00:00
8 changed files with 4 additions and 16 deletions

View File

@@ -166,11 +166,6 @@ ErrorOr<String> UnsignedBigInteger::to_base(u16 N) const
return TRY(builder.to_string()).reverse();
}
ByteString UnsignedBigInteger::to_base_deprecated(u16 N) const
{
return MUST(to_base(N)).to_byte_string();
}
u64 UnsignedBigInteger::to_u64() const
{
static_assert(sizeof(Word) == 4);