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

com.yubico.webauthn.exception.InvalidSignatureCountException Maven / Gradle / Ivy

There is a newer version: 2.6.0-alpha7
Show newest version
package com.yubico.webauthn.exception;

import com.yubico.webauthn.data.ByteArray;
import lombok.EqualsAndHashCode;
import lombok.Value;

@Value
@EqualsAndHashCode(callSuper = true)
public class InvalidSignatureCountException extends AssertionFailedException {

  private final ByteArray credentialId;
  private final long expectedMinimum;
  private final long received;

  public InvalidSignatureCountException(
      ByteArray credentialId, long expectedMinimum, long received) {
    super(
        String.format(
            "Signature counter must increase. Expected minimum: %s, received value: %s",
            expectedMinimum, received));
    this.credentialId = credentialId;
    this.expectedMinimum = expectedMinimum;
    this.received = received;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy