Bitcoin does not use encryption, and does not need to in order to secure ownership of coins. Ownership of coins is proven by digitally signing a transaction with the owner's private keys. The signature can be validated by anyone using the owner's public key.
Encryption obfuscates data for anyone that is not authorized to view (decrypt) it. Bitcoin cannot encrypt data that is stored in the blocks because the data needs to be able to be validated by all users (to prevent double spending).
Encryption is used, however in wallets to secure one's private keys, but that depends on the wallet software and how they've chosen to implement this type of protection. For example, Bitcoin Core wallet has a way to encrypt the wallet with a passphrase, see RPC Docs - Encrypt Wallet, but this is not essential for Bitcoin, users can use any wallet application.
Edit: As pointed out in the coments, a point of confustion is that Bitcoin uses Elliptic Curve cryptopgraphy, not RSA. This means that a digital signature in Bitcoin does not use encryption like RSA does, but instead an algorthm called ECDSA.
Thank you for replying. In regards to the creation of digital signatures, is there any encryption in the process? I mean, using the private key to sign the transactions involves encryption or not really? – Slmk – 2018-11-29T21:13:58.587
NP, The answer is no, in fact they are completely different algorithms. See https://en.wikipedia.org/wiki/Integrated_Encryption_Scheme and https://en.wikipedia.org/wiki/Elliptic_Curve_Digital_Signature_Algorithm
– JBaczuk – 2018-11-29T21:15:19.870Interesting. One last question... I heard that "digital signature is a hash string of the data encrypted with the private key and that pub key can decrypt it to see the hash in clear text"... So this sentence is completely wrong? – Slmk – 2018-11-29T21:24:03.257
Yeah that's not quite right because they are different algorithms. Generally put, "A digital signature is the result of running the data hash through the digital signature algorithm along with the private key." – JBaczuk – 2018-11-29T21:28:09.637
4@Shala There are some digital signature algorithms for which signing is effectively "encrypting with the private key", most notably RSA. This is not true for all algorithms though, and certainly not for ECDSA (also, ECDSA cannot be used for encryption at all). – Pieter Wuille – 2018-11-29T21:32:33.740
@ShalaMesk: yes signing and encryption are different, even for RSA. See links at (my) https://security.stackexchange.com/questions/159282/#159289
– dave_thompson_085 – 2018-11-30T17:14:24.123