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

net.luminis.quic.crypto.Aes256Gcm Maven / Gradle / Ivy

/*
 * Copyright © 2023, 2024 Peter Doornbosch
 *
 * This file is part of Kwik, a QUIC client Java library
 *
 * Kwik is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or (at your option)
 * any later version.
 *
 * Kwik is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
 * more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program. If not, see .
 */
package net.luminis.quic.crypto;

import at.favre.lib.hkdf.HKDF;
import at.favre.lib.hkdf.HkdfMacFactory;
import net.luminis.quic.impl.Role;
import net.luminis.quic.impl.Version;
import net.luminis.quic.log.Logger;

/**
 * https://www.rfc-editor.org/rfc/rfc9001.html#name-aead-usage
 * "QUIC can use any of the cipher suites defined in [TLS13] with the exception of TLS_AES_128_CCM_8_SHA256."
 * https://www.rfc-editor.org/rfc/rfc8446.html#appendix-B.4
 * "The corresponding AEAD algorithms (...), AEAD_AES_256_GCM, (...) are defined in [RFC5116]."
 */
public class Aes256Gcm extends Aes128Gcm {

    public Aes256Gcm(Version quicVersion, Role nodeRole, Logger log) {
        super(quicVersion, nodeRole, log);
    }

    @Override
    protected short getKeyLength() {
        return 32;
    }

    @Override
    protected short getHashLength() {
        return 48;
    }

    @Override
    protected HKDF getHKDF() {
        return HKDF.from(new HkdfMacFactory.Default("HmacSHA384", null));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy