Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 171 for cipher (0.16 sec)

  1. samples/tlssurvey/src/main/kotlin/okhttp3/survey/CipherSuiteSurvey.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.survey
    
    import okhttp3.survey.types.Client
    import okhttp3.survey.types.SuiteId
    
    /**
     * Organizes information on SSL cipher suite inclusion and precedence for this spreadsheet.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 01:44:15 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/crypto/cipher/io.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cipher
    
    import "io"
    
    // The Stream* objects are so simple that all their members are public. Users
    // can create them themselves.
    
    // StreamReader wraps a [Stream] into an [io.Reader]. It calls XORKeyStream
    // to process each slice of data which passes through.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/crypto/des/const.go

    	30, 48, 40, 49, 29, 36, 43, 54,
    	15, 4, 25, 19, 9, 1, 26, 16,
    	5, 11, 23, 8, 12, 7, 17, 0,
    	22, 3, 10, 14, 6, 20, 27, 24,
    }
    
    // 8 S-boxes composed of 4 rows and 16 columns
    // Used in the DES cipher function
    var sBoxes = [8][4][16]uint8{
    	// S-box 1
    	{
    		{14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7},
    		{0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 5, 3, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 12:31:18 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  4. pilot/pkg/security/authn/utils/utils.go

    		ctx.CommonTlsContext.AlpnProtocols = util.ALPNHttp
    	}
    	ciphers := SupportedCiphers
    	if mc != nil && mc.MeshMTLS != nil && mc.MeshMTLS.CipherSuites != nil {
    		ciphers = mc.MeshMTLS.CipherSuites
    	}
    	// Set Minimum TLS version to match the default client version and allowed strong cipher suites for sidecars.
    	ctx.CommonTlsContext.TlsParams = &tls.TlsParameters{
    		CipherSuites:              ciphers,
    		TlsMinimumProtocolVersion: minTLSVersion,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/secretbox/secretbox.go

    	"k8s.io/apiserver/pkg/storage/value"
    )
    
    // secretbox implements at rest encryption of the provided values given a 32 byte secret key.
    // Uses a standard 24 byte nonce (placed at the beginning of the cipher text) generated
    // from crypto/rand. Does not perform authentication of the data at rest.
    type secretboxTransformer struct {
    	key [32]byte
    }
    
    const nonceSize = 24
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 16:31:31 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. pkg/test/echo/fields.go

    	ActiveRequestsField   Field = "ActiveRequests"
    	DNSProtocolField      Field = "Protocol"
    	DNSQueryField         Field = "Query"
    	DNSServerField        Field = "DnsServer"
    	CipherField           Field = "Cipher"
    	TLSVersionField       Field = "Version"
    	TLSServerName         Field = "ServerName"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. docs/ftp/README.md

    ecdh-sha2-nistp256
    ecdh-sha2-nistp384
    ecdh-sha2-nistp521
    diffie-hellman-group14-sha256
    diffie-hellman-group16-sha512
    diffie-hellman-group14-sha1
    diffie-hellman-group1-sha1
    ```
    
    `--sftp=cipher-algos=...` specifies the allowed cipher algorithms. 
    If unspecified then a sensible default is used.
    
    Valid values: 
    ```
    aes128-ctr
    aes192-ctr
    aes256-ctr
    ******@****.***
    ******@****.***
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmUtil.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.smb;
    
    
    import java.security.GeneralSecurityException;
    import java.security.MessageDigest;
    
    import javax.crypto.Cipher;
    import javax.crypto.ShortBufferException;
    
    import jcifs.CIFSContext;
    import jcifs.util.Crypto;
    import jcifs.util.Encdec;
    import jcifs.util.Strings;
    
    
    /**
     * Internal use only
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/common/ImplementedInvokerAssistant.java

    import org.dbflute.bhv.core.supplement.SequenceCacheHandler;
    import org.dbflute.bhv.exception.BehaviorExceptionThrower;
    import org.dbflute.bhv.exception.SQLExceptionHandlerFactory;
    import org.dbflute.cbean.cipher.GearedCipherManager;
    import org.dbflute.cbean.sqlclause.SqlClauseCreator;
    import org.dbflute.dbmeta.DBMetaProvider;
    import org.dbflute.dbway.DBDef;
    import org.dbflute.jdbc.SQLExceptionDigger;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. maven-settings-builder/pom.xml

        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-sec-dispatcher</artifactId>
        </dependency>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-cipher</artifactId>
        </dependency>
    
        <dependency>
          <groupId>javax.inject</groupId>
          <artifactId>javax.inject</artifactId>
          <scope>provided</scope>
        </dependency>
    
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top