Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 947 for decrypto (0.29 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes.go

    limitations under the License.
    */
    
    // Package aes transforms values for storage at rest using AES-GCM.
    package aes
    
    import (
    	"bytes"
    	"context"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/rand"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"io"
    	"sync/atomic"
    	"time"
    
    	"k8s.io/apiserver/pkg/storage/value"
    	"k8s.io/klog/v2"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_ppc64x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (ppc64le || ppc64) && !purego
    
    package aes
    
    import (
    	"crypto/cipher"
    	"crypto/subtle"
    	"errors"
    	"internal/byteorder"
    	"runtime"
    )
    
    // This file implements GCM using an optimized GHASH function.
    
    //go:noescape
    func gcmInit(productTable *[256]byte, h []byte)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/crypto/aes/modes_test.go

    // interfaces that need to be tested.
    type testBlock struct{}
    
    func (*testBlock) BlockSize() int      { return 0 }
    func (*testBlock) Encrypt(a, b []byte) {}
    func (*testBlock) Decrypt(a, b []byte) {}
    func (*testBlock) NewGCM(int, int) (cipher.AEAD, error) {
    	return &testAEAD{}, nil
    }
    func (*testBlock) NewCBCEncrypter([]byte) cipher.BlockMode {
    	return &testBlockMode{}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 15:32:26 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/DES.java

        /// Encrypt a block of bytes.
        public void encrypt( byte[] clearText, byte[] cipherText )  {
            encrypt( clearText, 0, cipherText, 0 );
        }
    
        /// Decrypt a block of bytes.
        public void decrypt( byte[] cipherText, byte[] clearText ) {
    
            decrypt( cipherText, 0, clearText, 0 );
        }
    
        /**
         * encrypts an array where the length must be a multiple of 8
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/https.md

    <img src="/img/deployment/https/https04.svg">
    
    ### Decrypt the Request
    
    The TLS Termination Proxy would use the encryption agreed to **decrypt the request**, and would transmit the **plain (decrypted) HTTP request** to the process running the application (for example a process with Uvicorn running the FastAPI application).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. internal/crypto/metadata.go

    	// added it. However, when decrypting an object the bucket/object name must
    	// be part of the object. Therefore, the bucket/object name must be added
    	// to the context, if not present, whenever a decryption is performed.
    	MetaContext = "X-Minio-Internal-Server-Side-Encryption-Context"
    
    	// ARNPrefix prefix for "arn:aws:kms"
    	ARNPrefix = "arn:aws:kms:"
    )
    
    // IsMultiPart returns true if the object metadata indicates
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. internal/crypto/key_test.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package crypto
    
    import (
    	"bytes"
    	"crypto/rand"
    	"encoding/hex"
    	"io"
    	"testing"
    
    	"github.com/minio/minio/internal/logger"
    )
    
    var shortRandom = func(limit int64) io.Reader { return io.LimitReader(rand.Reader, limit) }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 02 00:13:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. internal/kms/config.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package kms
    
    import (
    	"bytes"
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"os"
    	"strings"
    	"sync/atomic"
    	"syscall"
    	"time"
    
    	"github.com/minio/kms-go/kes"
    	"github.com/minio/kms-go/kms"
    	"github.com/minio/pkg/v3/certs"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package tls
    
    import (
    	"context"
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/rsa"
    	"crypto/subtle"
    	"crypto/x509"
    	"errors"
    	"fmt"
    	"hash"
    	"internal/byteorder"
    	"io"
    	"time"
    )
    
    // serverHandshakeState contains details of a server handshake in progress.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. docs/bucket/lifecycle/DESIGN.md

    ...
    ```
    
    ### Encrypted/Object locked objects
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top