Browse Source

made point public in struct

pull/8/head
Nanak Nihal Singh Khalsa 1 year ago
parent
commit
05ce8d4d80
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/lib.rs

+ 2
- 2
src/lib.rs

@ -300,8 +300,8 @@ pub fn decompress_signature(b: &[u8; 64]) -> Result {
}
pub struct ElGamalEncryption {
c1: Point,
c2: Point
pub c1: Point,
pub c2: Point
}
pub struct PrivateKey {

Loading…
Cancel
Save