interface CryptoService {
    name: string;
    policy: CryptoServicePolicy;
    supportedAlgorithms: CryptoServiceAlgorithm[];
}

Properties

name: string
supportedAlgorithms: CryptoServiceAlgorithm[]