Package net.fortytwo.ripple.libs.string

Source Code of net.fortytwo.ripple.libs.string.Sha1

package net.fortytwo.ripple.libs.string;

import net.fortytwo.flow.Sink;
import net.fortytwo.ripple.RippleException;
import net.fortytwo.ripple.StringUtils;
import net.fortytwo.ripple.libs.system.SystemLibrary;
import net.fortytwo.ripple.model.ModelConnection;
import net.fortytwo.ripple.model.PrimitiveStackMapping;
import net.fortytwo.ripple.model.RippleList;
import net.fortytwo.ripple.model.RippleValue;

/**
* A primitive which consumes a string and produces its SHA-1 sum.
*
* @author Joshua Shinavier (http://fortytwo.net)
*/
public class Sha1 extends PrimitiveStackMapping {
    private static final String[] IDENTIFIERS = {
            StringLibrary.NS_2013_03 + "sha1",
            StringLibrary.NS_2008_08 + "sha1",
            StringLibrary.NS_2007_08 + "sha1",
            SystemLibrary.NS_2007_05 + "sha1"};

    public String[] getIdentifiers() {
        return IDENTIFIERS;
    }

    public Sha1()
            throws RippleException {
        super();
    }

    public Parameter[] getParameters() {
        return new Parameter[]{
                new Parameter("plaintext", null, true)};
    }

    public String getComment() {
        return "finds the sha1 hash of a string";
    }

    public void apply(final RippleList arg,
                      final Sink<RippleList> solutions,
                      final ModelConnection mc) throws RippleException {
        RippleList stack = arg;

        RippleValue a = stack.getFirst();
        stack = stack.getRest();

        String result = StringUtils.sha1SumOf(mc.toString(a));
        solutions.put(
                stack.push(StringLibrary.value(result, mc, a)));
    }
}
TOP

Related Classes of net.fortytwo.ripple.libs.string.Sha1

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.