René's URL Explorer Experiment


Title: RandomGenerator interface | java.evolved

Open Graph Title: RandomGenerator interface | java.evolved

X Title: RandomGenerator interface | java.evolved

Description: Use the RandomGenerator interface to choose random number algorithms by name without coupling to a specific class.

Open Graph Description: Use the RandomGenerator interface to choose random number algorithms by name without coupling to a specific class.

X Description: Use the RandomGenerator interface to choose random number algorithms by name without coupling to a specific class.

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

direct link

Domain: javaevolved.github.io


Hey, it has json ld scripts:
  {
    "@context": "https://schema.org",
    "@type": "TechArticle",
    "headline": "RandomGenerator interface",
    "description": "Use the RandomGenerator interface to choose random number algorithms by name without coupling to a specific class.",
    "url": "https://javaevolved.github.io/random-generator.html",
    "publisher": {
        "@type": "Organization",
        "name": "java.evolved",
        "url": "https://javaevolved.github.io"
    },
    "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://javaevolved.github.io/random-generator.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": "RandomGenerator interface"
        }
    ]
}
  

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/random-generator.png
og:image:width1200
og:image:height630
og:image:typeimage/png
twitter:cardsummary_large_image
twitter:imagehttps://javaevolved.github.io/og/security/random-generator.png

Links:

java.evolvedhttps://javaevolved.github.io/
https://github.com/javaevolved/javaevolved.github.io
← All patternshttps://javaevolved.github.io/
https://javaevolved.github.io/security/tls-default.html
https://javaevolved.github.io/tooling/jshell-prototyping.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%20RandomGenerator%20interface&category=security&slug=random-generator
🌐 Report a translation issuehttps://github.com/javaevolved/javaevolved.github.io/issues/new?template=translation-issue.yml&title=%5BTranslation%5D%20RandomGenerator%20interface%20%28English%29&locale=en&pattern=random-generator&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%2Frandom-generator.html&text=RandomGenerator%20interface%20%E2%80%93%20java.evolved
🦋https://bsky.app/intent/compose?text=RandomGenerator%20interface%20%E2%80%93%20java.evolved%20https%3A%2F%2Fjavaevolved.github.io%2Fsecurity%2Frandom-generator.html
inhttps://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fjavaevolved.github.io%2Fsecurity%2Frandom-generator.html
https://www.reddit.com/submit?url=https%3A%2F%2Fjavaevolved.github.io%2Fsecurity%2Frandom-generator.html&title=RandomGenerator%20interface%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%20RandomGenerator%20interface&category=security&slug=random-generator
RandomGenerator ↗https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/util/random/RandomGenerator.html
New Random Generator API (JEP 356) ↗https://openjdk.org/jeps/356
View proof source ↗https://github.com/javaevolved/javaevolved.github.io/blob/main/proof/security/RandomGenerator.java
Security Beginner Strong random generation Java 8 // Default algorithm — may not be // the strongest available SecureRandom random = new SecureRandom(); byte[] bytes = new byte[32]; random.nextBytes(bytes); Java 9+ // Platform's strongest algorithm SecureRandom random = SecureRandom.getInstanceStrong(); byte[] bytes = new byte[32]; random.nextBytes(bytes); Hover to see modern ➜ JDK 9+ → https://javaevolved.github.io/security/strong-random.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
Concurrency Beginner Virtual threads Java 8 Thread thread = new Thread(() -> { System.out.println("hello"); }); thread.start(); thread.join(); Java 21+ Thread.startVirtualThread(() -> { IO.println("hello"); }).join(); Hover to see modern ➜ JDK 21+ → https://javaevolved.github.io/concurrency/virtual-threads.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.