Is ftp connection to secure server in c++ program secure with libcurl?

Is ftp connection to secure server in c++ program secure with libcurl?I need to make a client program that will receive and write data to the host. >Solution : FTP is insecure, it transfers data, user names & passwords in the clear. Don’t use it. Use either https, scp or sftp.

NO_PUBKEY AA8E81B4331F7F50 NO_PUBKEY 112695A0E562B32A

I have issue with debian 9.13 apt-key when i try to update the apt package it show this error message: # sudo apt update Err:2 http://security.debian.org/debian-security stretch/updates InRelease The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY AA8E81B4331F7F50 NO_PUBKEY 112695A0E562B32A Ign:3 http://ftp.us.debian.org/debian stretch InRelease Hit:4 http://ftp.us.debian.org/debian stretch-updates InRelease Hit:5 http://ftp.us.debian.org/debian… Read More NO_PUBKEY AA8E81B4331F7F50 NO_PUBKEY 112695A0E562B32A

Python – Print successfully if the def has no except errors

I have this code that send files to a ftp server using try and except. def sendFiles(): #send a PDF try: ftp.cwd(‘/pdf’) pdf = "file1.pdf" # send the file with open(pdf, "rb") as file: ftp.storbinary(f"STOR {pdf}", file) except: print(colored(255, 0, 0, f"ERROR !!!!!!!! {pdf} was not sent!")) #send new POPUP IMAGE try: ftp.cwd(‘/image/popup’) popup =… Read More Python – Print successfully if the def has no except errors