Tabnine Logo
Association.isHmacSupported
Code IndexAdd Tabnine to your IDE (free)

How to use
isHmacSupported
method
in
org.openid4java.association.Association

Best Java code snippets using org.openid4java.association.Association.isHmacSupported (Showing top 15 results out of 315)

origin: jbufu/openid4java

&& Association.isHmacSupported(type.getAssociationType()))
assocReq = AssociationRequest.createAssociationRequest(type, dhSess);
 Association.isHmacSupported(type.getAssociationType()))
assocReq = AssociationRequest.createAssociationRequest(type);
origin: org.openid4java/openid4java

&& Association.isHmacSupported(type.getAssociationType()))
assocReq = AssociationRequest.createAssociationRequest(type, dhSess);
 Association.isHmacSupported(type.getAssociationType()))
assocReq = AssociationRequest.createAssociationRequest(type);
origin: org.openid4java/openid4java-nodeps

&& Association.isHmacSupported(type.getAssociationType()))
assocReq = AssociationRequest.createAssociationRequest(type, dhSess);
 Association.isHmacSupported(type.getAssociationType()))
assocReq = AssociationRequest.createAssociationRequest(type);
origin: org.wso2.org.openid4java/openid4java-nodeps

  && Association.isHmacSupported(type.getAssociationType())) {
  assocReq = AssociationRequest.createAssociationRequest(type, dhSess);
    Association.isHmacSupported(type.getAssociationType())) {
assocReq = AssociationRequest.createAssociationRequest(type);
origin: com.cloudbees/openid4java-shaded

&& Association.isHmacSupported(type.getAssociationType()))
assocReq = AssociationRequest.createAssociationRequest(type, dhSess);
 Association.isHmacSupported(type.getAssociationType()))
assocReq = AssociationRequest.createAssociationRequest(type);
origin: com.cloudbees/openid4java-shaded

/**
 * Sets the preferred association / session type.
 *
 * @see AssociationSessionType
 */
public void setPrefAssocSessEnc(AssociationSessionType type)
    throws ServerException
{
  if (! Association.isHmacSupported(type.getAssociationType()) ||
    ! DiffieHellmanSession.isDhSupported(type) )
    throw new ServerException("Unsupported association / session type: "
    + type.getSessionType() + " : " + type.getAssociationType());
  if (_minAssocSessEnc.isBetter(type) )
    throw new ServerException(
        "Minimum encryption settings cannot be better than the preferred");
  this._prefAssocSessEnc = type;
}
origin: org.openid4java/openid4java

/**
 * Sets the preferred association / session type.
 *
 * @see AssociationSessionType
 */
public void setPrefAssocSessEnc(AssociationSessionType type)
    throws ServerException
{
  if (! Association.isHmacSupported(type.getAssociationType()) ||
    ! DiffieHellmanSession.isDhSupported(type) )
    throw new ServerException("Unsupported association / session type: "
    + type.getSessionType() + " : " + type.getAssociationType());
  if (_minAssocSessEnc.isBetter(type) )
    throw new ServerException(
        "Minimum encryption settings cannot be better than the preferred");
  this._prefAssocSessEnc = type;
}
origin: org.openid4java/openid4java-nodeps

/**
 * Sets the preferred association / session type.
 *
 * @see AssociationSessionType
 */
public void setPrefAssocSessEnc(AssociationSessionType type)
    throws ServerException
{
  if (! Association.isHmacSupported(type.getAssociationType()) ||
    ! DiffieHellmanSession.isDhSupported(type) )
    throw new ServerException("Unsupported association / session type: "
    + type.getSessionType() + " : " + type.getAssociationType());
  if (_minAssocSessEnc.isBetter(type) )
    throw new ServerException(
        "Minimum encryption settings cannot be better than the preferred");
  this._prefAssocSessEnc = type;
}
origin: jbufu/openid4java

/**
 * Sets the preferred association / session type.
 *
 * @see AssociationSessionType
 */
public void setPrefAssocSessEnc(AssociationSessionType type)
    throws ServerException
{
  if (! Association.isHmacSupported(type.getAssociationType()) ||
    ! DiffieHellmanSession.isDhSupported(type) )
    throw new ServerException("Unsupported association / session type: "
    + type.getSessionType() + " : " + type.getAssociationType());
  if (_minAssocSessEnc.isBetter(type) )
    throw new ServerException(
        "Minimum encryption settings cannot be better than the preferred");
  this._prefAssocSessEnc = type;
}
origin: org.wso2.org.openid4java/openid4java-nodeps

/**
 * Sets the preferred association / session type.
 *
 * @see AssociationSessionType
 */
public void setPrefAssocSessEnc(AssociationSessionType type)
    throws ServerException {
  if (!Association.isHmacSupported(type.getAssociationType()) ||
    !DiffieHellmanSession.isDhSupported(type)) {
    throw new ServerException("Unsupported association / session type: "
                 + type.getSessionType() + " : " + type.getAssociationType());
  }
  if (_minAssocSessEnc.isBetter(type)) {
    throw new ServerException(
        "Minimum encryption settings cannot be better than the preferred");
  }
  this._prefAssocSessEnc = type;
}
origin: org.wso2.org.openid4java/openid4java-nodeps

if (!Association.isHmacSupported(type.getAssociationType()) ||
  !DiffieHellmanSession.isDhSupported(type) ||
  _minAssocSessEnc.isBetter(type)) {
origin: org.openid4java/openid4java-nodeps

if (! Association.isHmacSupported(type.getAssociationType()) ||
    ! DiffieHellmanSession.isDhSupported(type) ||
    _minAssocSessEnc.isBetter(type))
origin: jbufu/openid4java

if (! Association.isHmacSupported(type.getAssociationType()) ||
    ! DiffieHellmanSession.isDhSupported(type) ||
    _minAssocSessEnc.isBetter(type))
origin: com.cloudbees/openid4java-shaded

if (! Association.isHmacSupported(type.getAssociationType()) ||
    ! DiffieHellmanSession.isDhSupported(type) ||
    _minAssocSessEnc.isBetter(type))
origin: org.openid4java/openid4java

if (! Association.isHmacSupported(type.getAssociationType()) ||
    ! DiffieHellmanSession.isDhSupported(type) ||
    _minAssocSessEnc.isBetter(type))
org.openid4java.associationAssociationisHmacSupported

Popular methods of Association

  • getHandle
  • hasExpired
  • createHmacSha1
  • createHmacSha256
  • generate
  • getExpiry
  • getMacKey
  • getType
  • sign
  • verifySignature
  • <init>
  • createMacKey
  • <init>,
  • createMacKey,
  • generateHmacSha1,
  • generateHmacSha256,
  • generateMacKey,
  • generateMacSha1Key,
  • generateMacSha256Key,
  • getFailedAssociation,
  • isHmacSha256Supported

Popular in Java

  • Finding current android device location
  • startActivity (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • notifyDataSetChanged (ArrayAdapter)
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now