René's URL Explorer Experiment


Title: Strong random generation | java.evolved

Open Graph Title: Strong random generation | java.evolved

X Title: Strong random generation | java.evolved

Description: Get the platform's strongest SecureRandom implementation.

Open Graph Description: Get the platform's strongest SecureRandom implementation.

X Description: Get the platform's strongest SecureRandom implementation.

Opengraph URL: https://javaevolved.github.io/security/strong-random.html

direct link

Domain: javaevolved.github.io


Hey, it has json ld scripts:
  {
    "@context": "https://schema.org",
    "@type": "TechArticle",
    "headline": "Strong random generation",
    "description": "Get the platform's strongest SecureRandom implementation.",
    "url": "https://javaevolved.github.io/strong-random.html",
    "publisher": {
        "@type": "Organization",
        "name": "java.evolved",
        "url": "https://javaevolved.github.io"
    },
    "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://javaevolved.github.io/strong-random.html"
    }
}
  
  {
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [
        {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://javaevolved.github.io/"
        },
        {
            "@type": "ListItem",
            "position": 2,
            "name": "Security",
            "item": "https://javaevolved.github.io/#security"
        },
        {
            "@type": "ListItem",
            "position": 3,
            "name": "Strong random generation"
        }
    ]
}
  

theme-color#f97316
mobile-web-app-capableyes
apple-mobile-web-app-status-bar-styleblack-translucent
apple-mobile-web-app-titlejava.evolved
og:typearticle
og:site_namejava.evolved
og:localeen
og:imagehttps://javaevolved.github.io/og/security/strong-random.png
og:image:width1200
og:image:height630
og:image:typeimage/png
twitter:cardsummary_large_image
twitter:imagehttps://javaevolved.github.io/og/security/strong-random.png

Links:

java.evolvedhttps://javaevolved.github.io/
https://github.com/javaevolved/javaevolved.github.io
← All patternshttps://javaevolved.github.io/
https://javaevolved.github.io/security/key-derivation-functions.html
https://javaevolved.github.io/security/tls-default.html
Homehttps://javaevolved.github.io/
Securityhttps://javaevolved.github.io/#security
🐛 Report a code issuehttps://github.com/javaevolved/javaevolved.github.io/issues/new?template=code-issue.yml&title=%5BCode%20Issue%5D%20Strong%20random%20generation&category=security&slug=strong-random
🌐 Report a translation issuehttps://github.com/javaevolved/javaevolved.github.io/issues/new?template=translation-issue.yml&title=%5BTranslation%5D%20Strong%20random%20generation%20%28English%29&locale=en&pattern=strong-random&area=Pattern%20content
💡 Suggest a new patternhttps://github.com/javaevolved/javaevolved.github.io/issues/new?template=new-pattern.yml
𝕏https://x.com/intent/tweet?url=https%3A%2F%2Fjavaevolved.github.io%2Fsecurity%2Fstrong-random.html&text=Strong%20random%20generation%20%E2%80%93%20java.evolved
🦋https://bsky.app/intent/compose?text=Strong%20random%20generation%20%E2%80%93%20java.evolved%20https%3A%2F%2Fjavaevolved.github.io%2Fsecurity%2Fstrong-random.html
inhttps://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fjavaevolved.github.io%2Fsecurity%2Fstrong-random.html
https://www.reddit.com/submit?url=https%3A%2F%2Fjavaevolved.github.io%2Fsecurity%2Fstrong-random.html&title=Strong%20random%20generation%20%E2%80%93%20java.evolved
Let us know.https://github.com/javaevolved/javaevolved.github.io/issues/new?template=code-issue.yml&title=%5BCode%20Issue%5D%20Strong%20random%20generation&category=security&slug=strong-random
SecureRandom ↗https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/security/SecureRandom.html
View proof source ↗https://github.com/javaevolved/javaevolved.github.io/blob/main/proof/security/StrongRandom.java
Security Advanced PEM encoding/decoding Java 8 String pem = "-----BEGIN CERTIFICATE-----\n" + Base64.getMimeEncoder() .encodeToString( cert.getEncoded()) + "\n-----END CERTIFICATE-----"; Java 25 (Preview) // Encode to PEM String pem = PEMEncoder.of() .encodeToString(cert); // Decode from PEM var cert = PEMDecoder.of() .decode(pemString); Hover to see modern ➜ JDK 25+ → https://javaevolved.github.io/security/pem-encoding.html
Security Advanced Key Derivation Functions Java 8 SecretKeyFactory factory = SecretKeyFactory.getInstance( "PBKDF2WithHmacSHA256"); KeySpec spec = new PBEKeySpec( password, salt, 10000, 256); SecretKey key = factory.generateSecret(spec); Java 25 var kdf = KDF.getInstance("HKDF-SHA256"); SecretKey key = kdf.deriveKey( "AES", KDF.HKDFParameterSpec .ofExtract() .addIKM(inputKey) .addSalt(salt) .thenExpand(info, 32) .build() ); Hover to see modern ➜ JDK 25+ → https://javaevolved.github.io/security/key-derivation-functions.html
Security Intermediate TLS 1.3 by default Java 8 SSLContext ctx = SSLContext.getInstance("TLSv1.2"); ctx.init(null, trustManagers, null); SSLSocketFactory factory = ctx.getSocketFactory(); // Must specify protocol version Java 11+ // TLS 1.3 is the default! var client = HttpClient.newBuilder() .sslContext(SSLContext.getDefault()) .build(); // Already using TLS 1.3 Hover to see modern ➜ JDK 11+ → https://javaevolved.github.io/security/tls-default.html
java.evolvedhttps://javaevolved.github.io/
Bruno Borgeshttps://github.com/brunoborges
GitHub Copilothttps://github.com/features/copilot
modern-css.comhttps://modern-css.com
View on GitHubhttps://github.com/javaevolved/javaevolved.github.io

Viewport: width=device-width, initial-scale=1.0

Robots: index, follow


URLs of crawlers that visited me.