@mega-yfue/eufy-sdk / RtspAuthScheme
Type Alias: RtspAuthScheme
ts
type RtspAuthScheme = "digest" | "basic";The RTSP authentication scheme a caller can require. Maps to the credential write's mode field.
"digest"— request a hashed nonce challenge, observed on a standalone camera. The reader does not send the plaintext password during RTSP authentication, though configuration still sends it to the device. The safer choice, and the app's default."basic"— request Basic authentication, where the reader sends the password base64-encoded on every request (encoding, not encryption). Offered for players that only speak Basic.