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

io.jsonwebtoken.Jwe Maven / Gradle / Ivy

There is a newer version: 0.12.6
Show newest version
/*
 * Copyright (C) 2021 jsonwebtoken.io
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.jsonwebtoken;

/**
 * An encrypted JWT, called a "JWE", per the
 * JWE (RFC 7516) Specification.
 *
 * @param  payload type, either {@link Claims} or {@code byte[]} content.
 * @since 0.12.0
 */
public interface Jwe extends ProtectedJwt {

    /**
     * Visitor implementation that ensures the visited JWT is a JSON Web Encryption ('JWE') message with an
     * authenticated and decrypted {@code byte[]} array payload, and rejects all others with an
     * {@link UnsupportedJwtException}.
     *
     * @see SupportedJwtVisitor#onDecryptedContent(Jwe)
     * @since 0.12.0
     */
    @SuppressWarnings("UnnecessaryModifier")
    public static final JwtVisitor> CONTENT = new SupportedJwtVisitor>() {
        @Override
        public Jwe onDecryptedContent(Jwe jwe) {
            return jwe;
        }
    };

    /**
     * Visitor implementation that ensures the visited JWT is a JSON Web Encryption ('JWE') message with an
     * authenticated and decrypted {@link Claims} payload, and rejects all others with an
     * {@link UnsupportedJwtException}.
     *
     * @see SupportedJwtVisitor#onDecryptedClaims(Jwe)
     * @since 0.12.0
     */
    @SuppressWarnings("UnnecessaryModifier")
    public static final JwtVisitor> CLAIMS = new SupportedJwtVisitor>() {
        @Override
        public Jwe onDecryptedClaims(Jwe jwe) {
            return jwe;
        }
    };

    /**
     * Returns the Initialization Vector used during JWE encryption and decryption.
     *
     * @return the Initialization Vector used during JWE encryption and decryption.
     */
    byte[] getInitializationVector();
}