mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-07 20:53:54 -05:00
Signed-off-by: KiruthikaJeyashankar <81218987+KiruthikaJeyashankar@users.noreply.github.com>
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
const bindingCertificate = '-bindingCertificate';
|
|
|
|
export async function getPrivateKey(id: string) {
|
|
var result = await RNSecureKeyStore.get(id);
|
|
return result;
|
|
}
|
|
|
|
export function getBindingCertificateConstant(id: string) {
|
|
return id + bindingCertificate;
|
|
}
|