What's cypher security.. Is there any relationship between it and programming languages!!? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

What's cypher security.. Is there any relationship between it and programming languages!!?

<!--Cypher security and its relation with programming lang-->

22nd Jan 2019, 11:52 PM
Mr-K0anti
Mr-K0anti - avatar
3 Answers
+ 1
While cyber security are well discussed above, cypher security can be said to deal with the integrity of a cryptographic system to attack. Consider the family of Secure Hash Algorithm functions (SHA-0, SHA-1, SHA-2 & SHA-3). if you have distinct blocks of data, i.e. messages m1 and m2, then their hash functions should be different. If they are the same, one can there is a collision. SHA-0 and SHA-1 have been shown to be vulnerable to collisions. So you cannot use either of them to detect, whether a block of code or data is unique and unaltered. Another attack on the SHA functions deals with collisions where a message is extended with additional data. In this case, the first three hashes, SHA-0, SHA-1, & SHA-2, have been shown to be vulnerable to collision. So someone could extend your block of data with additional data, and you could not detect the difference using these hash functions. Only SHA-3 has shown resistance to both forms of attack. So if you download a new version of Python or Java, use only the SHA-3 hash function to check the integrity of the code you received with the author’s hash value to verify its integrity from alteration. See the Wikipedia article: https://en.wikipedia.org/wiki/Secure_Hash_Algorithms?wprov=sfti1
23rd Jan 2019, 4:34 PM
Christopher Goodman
Christopher Goodman  - avatar
+ 5
Cyber-security is the practice of defending computers, servers, mobile devices, electronic systems, networks, and data from malicious attacks.  For more: https://en.m.wikipedia.org/wiki/Computer_security Yeah there is relationship between Cyber security and programming language. You need to learn different kinds of Programming language if you want to work with Cyber security.
23rd Jan 2019, 1:14 AM
AL Araf
AL Araf - avatar
+ 1
CYBER SECURITY IS THE CONCEPT OF PROVIDING SECURITY FOR CYBER SPACE CYBER SECURITY ALGORITHMS ARE IMPLEMENT IN A CRYPTOGRAPHY DIFFERENT WAYS OF ALGORITHM CREATION ================= TRIPLE DES (DATA ENCRYPTION STANDARDS) AES(ADVANCED ENCRYPTION STANDARDS) RSA (RIVEST SHAMIR ADLEMAN) TWOFISH BLOWFISH BLOCK CIPHER /STEAM CIPHER ======================== CYBER SECURYTY ALGORITHMS ARE IMPLEMENTED IN JAVA JAVA PROVIDES ATMOST SECURITY JAVA IS PROVIDING SEVERAL PACKAGES java.security javax.crypo javax.crypto.interfaces java.security.cert java.security.spec javax.crypto.spec java.security.interfaces JAVA IS HAVING ARCHITECTURE FOR CRYPTOGRAPHY IT IS MAINTAINING SEPERATE API ALSO
23rd Jan 2019, 3:00 PM
sree harsha
sree harsha - avatar