All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.interledger.crypto.CryptoKeys Maven / Gradle / Ivy

Go to download

Encryption, decryption, signing and verification services using various underlying key-stores.

The newest version!
package org.interledger.crypto;


import org.immutables.value.Value;

/**
 * Named keys that are configured for use by the connector.
 */
@Value.Immutable
public interface CryptoKeys {

  static ImmutableCryptoKeys.Builder builder() {
    return ImmutableCryptoKeys.builder();
  }

  /**
   * Core secret for the connector
   *
   * @return key
   */
  CryptoKey secret0();

  /**
   * Key for incoming/outgoing shared secrets on account settings
   * @return key
   */
  CryptoKey accountSettings();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy