Interface DGK_Key

All Known Implementing Classes:
DGKPrivateKey, DGKPublicKey

public interface DGK_Key
Interface representing a DGK (Damgård-Geisler-Krøigaard) key.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Retrieves the bit length \( l \) of the DGK key.
    Retrieves the modulus \( n \) associated with the DGK key.
    Retrieves the value of \( u \), a parameter associated with the DGK key.
  • Method Details

    • getU

      BigInteger getU()
      Retrieves the value of \( u \), a parameter associated with the DGK key.
      Returns:
      the value of \( u \)
    • getN

      BigInteger getN()
      Retrieves the modulus \( n \) associated with the DGK key.
      Returns:
      the modulus \( n \)
    • getL

      int getL()
      Retrieves the bit length \( l \) of the DGK key.
      Returns:
      the bit length \( l \)