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

io.gatling.recorder.internal.bouncycastle.operator.bc.OperatorUtils Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.operator.bc;

import java.security.Key;

import io.gatling.recorder.internal.bouncycastle.operator.GenericKey;

class OperatorUtils
{
    static byte[] getKeyBytes(GenericKey key)
    {
        if (key.getRepresentation() instanceof Key)
        {
            return ((Key)key.getRepresentation()).getEncoded();
        }

        if (key.getRepresentation() instanceof byte[])
        {
            return (byte[])key.getRepresentation();
        }

        throw new IllegalArgumentException("unknown generic key type");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy