I have a jar file from Bouncy Castle that I have placed in the configured folder for external libraries. The file is not being recognized according to testing. Do I need to do something else to use the file, e.g. an import statement or similar?
I've added that and it is still failing. Is my syntax/placement correct for the above?
Loading bouncy castle:
#AdditionalJar: bcprov-jdk18on-1.83
'Non-UI application (console / server application)
#Region Project Attributes
#CommandLineArgs:
#MergeLibraries: True
#End Region
Sub Process_Globals
End Sub
Sub AppStart (Args() As String)
Try
Dim jo As JavaObject
jo.InitializeNewInstance("org.bouncycastle.crypto.engines.ChaCha20Poly1305", Null)
Log("SUCCESS: BC is loaded")
Catch
Log("FAIL: BC not loaded")
End Try
End Sub