Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multipartite Key Exchange - Exception with Broadcast PK(i) #17

Closed
dschadow opened this issue Dec 23, 2011 · 2 comments
Closed

Multipartite Key Exchange - Exception with Broadcast PK(i) #17

dschadow opened this issue Dec 23, 2011 · 2 comments
Assignees
Labels

Comments

@dschadow
Copy link
Member

Open the Multipartite Key Exchange view. Select the radio "2 (large parameters)" in "Settings - Embedding degree k". Click the Generate button and then Broadcast PK(i). The second button results in an exception:

!MESSAGE Unhandled event loop exception
!STACK 0
java.lang.StackOverflowError
at de.flexiprovider.ec.ECPRNG.generateSeed(ECPRNG.java:219)
at de.flexiprovider.ec.ECPRNG.generateSeed(ECPRNG.java:219)
...

@ghost ghost assigned dschadow Dec 24, 2011
@dschadow
Copy link
Member Author

This seems to be a FlexiProvider bug caused by the following method:

public byte[] generateSeed(int numBytes) {
if (numBytes <= 0) {
return new byte[0];
}
//return seedGenerator.generateSeed(numBytes);
return this.generateSeed(numBytes);
}

@dschadow
Copy link
Member Author

See jcryptool/core#31, RC6 will not be released before this issue is fixed.

grthor pushed a commit to grthor/crypto that referenced this issue May 17, 2018
Fixes bug jcryptool#17 and solves
jcryptool/core#31

Signed-off-by: Dominik Schadow <dominikschadow@googlemail.com>
grthor pushed a commit to grthor/crypto that referenced this issue May 17, 2018
Fixes bug jcryptool#17 and solves
jcryptool/core#31

Signed-off-by: Dominik Schadow <dominikschadow@googlemail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant