You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pirk.apache.org by tellison <gi...@git.apache.org> on 2016/07/14 08:59:18 UTC

[GitHub] incubator-pirk pull request #2: [PIRK-2] Load Pallier's PRNG statically and ...

GitHub user tellison opened a pull request:

    https://github.com/apache/incubator-pirk/pull/2

    [PIRK-2] Load Pallier's PRNG statically and from any provider.

    Tested with Oracle jdk180_91 and IBM 8.0.3.0.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/tellison/incubator-pirk pirk-2

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/incubator-pirk/pull/2.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #2
    
----
commit 15f98ec9da94d3780b6cd9e4e9093a3f6e2f2972
Author: Tim Ellison <t....@gmail.com>
Date:   2016-07-14T08:57:14Z

    [PIRK-2] Load Pallier's PRNG statically and from any provider.

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-pirk pull request #2: [PIRK-2] Load Pallier's PRNG statically and ...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/incubator-pirk/pull/2


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-pirk issue #2: [PIRK-2] Load Pallier's PRNG statically and from an...

Posted by eawiliams <gi...@git.apache.org>.
Github user eawiliams commented on the issue:

    https://github.com/apache/incubator-pirk/pull/2
  
    Going to accept this pull request now and then follow up with a JIRA issue to add the Provider (for SecureRandom) as a configuration option in Pirk.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-pirk issue #2: [PIRK-2] Load Pallier's PRNG statically and from an...

Posted by tellison <gi...@git.apache.org>.
Github user tellison commented on the issue:

    https://github.com/apache/incubator-pirk/pull/2
  
    The configuration of providers is made in the runtime (in the lib/security/java.security) rather than the application.  Why would Pirk need to specify a specific provider?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-pirk issue #2: [PIRK-2] Load Pallier's PRNG statically and from an...

Posted by eawiliams <gi...@git.apache.org>.
Github user eawiliams commented on the issue:

    https://github.com/apache/incubator-pirk/pull/2
  
    As different providers of NativePRNG may have different implementations, we want to give users the ability to specify their provider. Thus, we need to add config option(s) to specify the the provider or default to 'SUN' and fail over to grab the system-default NativePRNG. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-pirk issue #2: [PIRK-2] Load Pallier's PRNG statically and from an...

Posted by eawiliams <gi...@git.apache.org>.
Github user eawiliams commented on the issue:

    https://github.com/apache/incubator-pirk/pull/2
  
    For the user that would like to remove the ambiguity of the provider, adding a configuration option to specify the provider seems reasonable. Additionally, as the SecureRandom constructor explicitly provides for this option:
    
    SecureRandom(SecureRandomSpi secureRandomSpi, Provider provider)
    
    it makes sense to extend it outwards to Pirk.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---