aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/j2me/org/spongycastle/operator/bc/OperatorUtils.java
blob: d0eae576bcd73b148744dce1a4aee47e485436ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.spongycastle.operator.bc;

import org.spongycastle.operator.GenericKey;

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

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