frypatch

Results 7 comments of frypatch

http://stackoverflow.com/a/22492582 ## Summary: Options are: - Install the unlimited strength policy files. - Skip the JCE API and use another cryptography library such as Bouncy Castle. - Bypass JCE restrictions...

Why not just mimic what is done in `TorClient.main(null);` https://github.com/subgraph/Orchid/blob/develop/src/com/subgraph/orchid/TorClient.java#L183 Here is what I did to create a singleton class to wrap the TorClient: ``` package com.anonyread.util.http; import com.subgraph.orchid.TorClient; import...

In my experience, every time you create a new socket connection over tor your output ip will change. Sudo Code: ``` TorClient client = //initialized somehow String host = //initialized...

I'm going to look into forking and developing features for orchid. I've already addressed the issues mentioned here and re-wrote the api to act like a traditional http client in...

@nomadgy I remember having a fix for fixing the `not enough directory information` bug but didn't publish it anywhere, but it sounds like this is not your problem. The `TorCryptography.removeCryptographyRestrictions()`...

@felunka Try my fork: https://github.com/geo-gs/Orchid Here are relevant commits: https://github.com/geo-gs/Orchid/commit/a95b3c808c5e2ccaf10b3205c0b9138bac3946a8 https://github.com/geo-gs/Orchid/commit/a0c0179595a1f52d4dc0dc9ea879b22ea16b481c

I converted this into a gradle project here: https://github.com/geo-gs/WaifUPnP/ This means that you can now use jitpack to import the library into a gradle project by adding this to your...