This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

application level encryption

Hi,

Is it possible to use complicated encryption algorithm like triple DES,RSA,Blowfish,Twofish,AES in application level

Parents
  • It is possible to use the AES block to do electronic codebook mode encryption (ECB) at the application level, please take a look at this answer. Please note, that you're only able to do encryption, and not decryption.

    The bootloader's cryptography library supports ECDSA (Elliptic Curve Digital Signature Algorithm) and ECDH (Elliptic Curve Diffie-Hellmann) which can be used to sign and encrypt data respectively.

    As for the other encryption methods you're mentioning, e.g. DES, Twofish, Blowfish, RSA, then the answer is no, it is not supported at the application level.

    -Bjørn

Reply
  • It is possible to use the AES block to do electronic codebook mode encryption (ECB) at the application level, please take a look at this answer. Please note, that you're only able to do encryption, and not decryption.

    The bootloader's cryptography library supports ECDSA (Elliptic Curve Digital Signature Algorithm) and ECDH (Elliptic Curve Diffie-Hellmann) which can be used to sign and encrypt data respectively.

    As for the other encryption methods you're mentioning, e.g. DES, Twofish, Blowfish, RSA, then the answer is no, it is not supported at the application level.

    -Bjørn

Children
Related