Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for setRandom (0.23 sec)

  1. src/main/java/jcifs/config/BaseConfiguration.java

         */
        public BaseConfiguration(final boolean initDefaults) throws CIFSException {
            if (initDefaults) {
                this.initDefaults();
            }
        }
    
        @Override
        public SecureRandom getRandom() {
            return this.random;
        }
    
        @Override
        public String getNetbiosHostname() {
            return this.netbiosHostname;
        }
    
        @Override
        public InetAddress getLocalAddr() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Configuration.java

     *
     */
    public interface Configuration {
    
        /**
         * Gets the secure random number generator for cryptographic operations
         *
         * @return random source to use
         */
        SecureRandom getRandom();
    
        /**
         *
         *
         * Property {@code jcifs.smb.client.dfs.ttl} (int, default 300)
         *
         * @return title to live, in seconds, for DFS cache entries
         */
        long getDfsTtl();
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top