interface ProviderCrypto {
    algorithms: string[];
    atr?: string;
    card: string;
    id: string;
    isHardware: boolean;
    isRemovable: boolean;
    library?: string;
    name: string;
    readOnly: boolean;
    token?: TokenInfo;
}

Implemented by

Properties

algorithms: string[]
atr?: string
card: string
id: string
isHardware: boolean
isRemovable: boolean
library?: string
name: string
readOnly: boolean
token?: TokenInfo