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

org.bouncycastle.jsse.provider.JcaAlgorithmDecomposer Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package org.bouncycastle.jsse.provider;

import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import java.util.regex.Pattern;

class JcaAlgorithmDecomposer
    implements AlgorithmDecomposer
{
    private static final Pattern PATTERN = Pattern.compile("with|and|(? decompose(String algorithm)
    {
        if (algorithm.indexOf('/') < 0)
        {
            return Collections.emptySet();
        }

        Set result = new HashSet();

        for (String section : algorithm.split("/"))
        {
            if (section.length() > 0)
            {
                for (String part : PATTERN.split(section))
                {
                    if (part.length() > 0)
                    {
                        result.add(part);
                    }
                }
            }
        }

        ensureBothIfEither(result, "SHA1", "SHA-1");
        ensureBothIfEither(result, "SHA224", "SHA-224");
        ensureBothIfEither(result, "SHA256", "SHA-256");
        ensureBothIfEither(result, "SHA384", "SHA-384");
        ensureBothIfEither(result, "SHA512", "SHA-512");

        return result;
    }

    private static void ensureBothIfEither(Set elements, String a, String b)
    {
        boolean hasA = elements.contains(a), hasB = elements.contains(b);
        if (hasA ^ hasB)
        {
            elements.add(hasA ? b : a);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy