Package org.jose4j.jwk

Source Code of org.jose4j.jwk.OctJwkGenerator

package org.jose4j.jwk;

import org.jose4j.keys.AesKey;
import org.jose4j.lang.ByteUtil;

/**
*/
public class OctJwkGenerator
{
    public static OctetSequenceJsonWebKey generateJwk(int keyLengthInBits)
    {
        byte[] bytes = ByteUtil.randomBytes(ByteUtil.byteLength(keyLengthInBits));
        return new OctetSequenceJsonWebKey(new AesKey(bytes));
    }
}
TOP

Related Classes of org.jose4j.jwk.OctJwkGenerator

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.