secure document transmission for face image extraction

0

We are trying to get customer's face image details using AWS rekognition's detectface API. We are passing the document in bytes as input, but this is highly restricted data as it contains Unique Customer Information.

List<FaceDetail> detectFaces(@NonNull final byte[] bytes)

We know service supports over HTTPS and encrypted with TLS.

Is this client to server channel safe from any external intrusion??

OR

Does this AWS rekognition provide any encrypted input data transmission support for e.g. client side encryption at rest ?

1개 답변
2

We know service supports over HTTPS and encrypted with TLS.

To clarify there, you cannot make API calls to Rekognition unless it's using HTTPS.

Is this client to server channel safe from any external intrusion??

For your best protection here, ensure you're using TLS 1.2 at a minimum.

Does this AWS rekognition provide any encrypted input data transmission support for e.g. client side encryption at rest ?

This is possible, but not something Recognition does natively. In order to do this, you would need to add additional logic to your application to handle encryption/decryption and your key material.

See the Rekognition security guide here..

AWS
답변함 2년 전
profile pictureAWS
전문가
Chris_G
검토됨 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠