Posts related to tag: encoding


java.lang.NoClassDefFoundError: org/bouncycastle/crypto/generators/SCrypt

While encoding your password/data with SCryptPasswordEncoder, you might be getting the below exception: java.lang.NoClassDefFoundError: org/bouncycastle/crypto/generators/SCrypt at org.springframework.security.crypto.scrypt.SCryptPasswordEncoder.digest(SCryptPasswordEncoder.java:195) ~[spring-security-crypto-6.0.3.jar:6.0.3] at org.springframework.security.crypto.scrypt.SCryptPasswordEncoder.encode(SCryptPasswordEncoder.java:150) […] Continue reading »

JavaScript Base64 and URL Encoding Decoding Example

In this short article, we’ll explore JavaScript encoding decoding capabilities. In JavaScript, these are the functions respectively for encoding and […] Continue reading »

Java 8 Base64 Encoding and Decoding Example

In this guide, we’ll explore the Java 8 Base64 utility class for obtaining encoders and decoders for the Base64 encoding […] Continue reading »