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

org.xipki.pkcs11.wrapper.params.ExtraParams Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
// Copyright (c) 2023 xipki. All rights reserved.
// License Apache License 2.0

package org.xipki.pkcs11.wrapper.params;

/**
 * Provides extra parameters. E.g. the order bit size of an EC curve.
 *
 * @author Lijun Liao
 */
public class ExtraParams {

  private int ecOrderBitSize;

  public int ecOrderBitSize() {
    return ecOrderBitSize;
  }

  public ExtraParams ecOrderBitSize(int ecOrderBitSize) {
    this.ecOrderBitSize = ecOrderBitSize;
    return this;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy