001package com.box.sdkgen.internal.utils; 002 003import java.security.PrivateKey; 004 005/** Decrypts private key with provided passphrase */ 006public interface PrivateKeyDecryptor { 007 /** Decrypts private key using a passphrase. */ 008 PrivateKey decryptPrivateKey(String encryptedPrivateKey, String passphrase); 009}