public YotiTokenRequestBuilder WithSelfie(byte[] value, List <SandboxAnchor> anchors) { string base64Selfie = Conversion.BytesToBase64(value); return(WithBase64Selfie(base64Selfie, anchors)); }
public string EncryptData(string plainText) { var plainBytes = Conversion.StringToBytes(plainText); return(Conversion.BytesToBase64(EncryptData(plainBytes))); }
public YotiTokenRequestBuilder WithSelfie(byte[] value) { string base64Selfie = Conversion.BytesToBase64(value); return(WithBase64Selfie(base64Selfie)); }