All files / src/crypto generate.ts

100% Statements 3/3
100% Branches 0/0
100% Functions 1/1
100% Lines 3/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12              4x 4x 4x    
import {getCurve} from './curves'
 
/**
 * Generate a new private key for given type.
 * @internal
 */
export function generate(type: string) {
    const curve = getCurve(type)
    const privkey = curve.genKeyPair().getPrivate()
    return privkey.toArrayLike(Uint8Array as any, 'be', 32) as Uint8Array
}